Coverage for mlos_bench/mlos_bench/environments/local/__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"""Local Environments for mlos_bench.""" 

6 

7from mlos_bench.environments.local.local_env import LocalEnv 

8from mlos_bench.environments.local.local_fileshare_env import LocalFileShareEnv 

9 

10__all__ = [ 

11 "LocalEnv", 

12 "LocalFileShareEnv", 

13]