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

5 statements  

« prev     ^ index     » next       coverage.py v7.5.1, created at 2024-05-05 00:36 +0000

1# 

2# Copyright (c) Microsoft Corporation. 

3# Licensed under the MIT License. 

4# 

5""" 

6Services for implementing Environments for mlos_bench. 

7""" 

8 

9from mlos_bench.services.base_service import Service 

10from mlos_bench.services.base_fileshare import FileShareService 

11from mlos_bench.services.local.local_exec import LocalExecService 

12 

13 

14__all__ = [ 

15 'Service', 

16 'FileShareService', 

17 'LocalExecService', 

18]