Coverage for mlos_bench/mlos_bench/environments/local/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.6.7, created at 2024-11-22 01:18 +0000
« 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"""Local Environments for mlos_bench."""
7from mlos_bench.environments.local.local_env import LocalEnv
8from mlos_bench.environments.local.local_fileshare_env import LocalFileShareEnv
10__all__ = [
11 "LocalEnv",
12 "LocalFileShareEnv",
13]