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

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

6Mock local services for testing purposes. 

7""" 

8 

9from .mock_local_exec_service import MockLocalExecService 

10 

11__all__ = [ 

12 'MockLocalExecService', 

13]