Coverage for mlos_bench/mlos_bench/environments/remote/vm_env.py: 100%
4 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"""Remote VM (Host) Environment."""
7import logging
9from mlos_bench.environments.remote.host_env import HostEnv
11_LOG = logging.getLogger(__name__)
14class VMEnv(HostEnv):
15 """
16 Remote VM/host environment.
18 Note: this is just a class alias for HostEnv for historical purposes.
19 """