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

4 statements  

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

1# 

2# Copyright (c) Microsoft Corporation. 

3# Licensed under the MIT License. 

4# 

5""" 

6Tests for mlos_bench.services. 

7Used to make mypy happy about multiple conftest.py modules. 

8""" 

9 

10from .local import MockLocalExecService 

11from .remote import MockFileShareService, MockRemoteExecService, MockVMService 

12 

13__all__ = [ 

14 'MockLocalExecService', 

15 'MockFileShareService', 

16 'MockRemoteExecService', 

17 'MockVMService', 

18]