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

3 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""" 

6Tests for mlos_bench.services. 

7 

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

9""" 

10 

11from .local import MockLocalExecService 

12from .remote import MockFileShareService, MockRemoteExecService, MockVMService 

13 

14__all__ = [ 

15 "MockLocalExecService", 

16 "MockFileShareService", 

17 "MockRemoteExecService", 

18 "MockVMService", 

19]