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

4 statements  

« prev     ^ index     » next       coverage.py v7.6.7, created at 2024-11-22 01:18 +0000

1# 

2# Copyright (c) Microsoft Corporation. 

3# Licensed under the MIT License. 

4# 

5""" 

6Services for implementing Environments for mlos_bench. 

7 

8TODO: Improve documentation here. 

9""" 

10 

11from mlos_bench.services.base_fileshare import FileShareService 

12from mlos_bench.services.base_service import Service 

13from mlos_bench.services.local.local_exec import LocalExecService 

14 

15__all__ = [ 

16 "Service", 

17 "FileShareService", 

18 "LocalExecService", 

19]