Coverage for mlos_bench/mlos_bench/services/__init__.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-10-07 01:52 +0000

1# 

2# Copyright (c) Microsoft Corporation. 

3# Licensed under the MIT License. 

4# 

5"""Services for implementing Environments for mlos_bench.""" 

6 

7from mlos_bench.services.base_fileshare import FileShareService 

8from mlos_bench.services.base_service import Service 

9from mlos_bench.services.local.local_exec import LocalExecService 

10 

11__all__ = [ 

12 "Service", 

13 "FileShareService", 

14 "LocalExecService", 

15]