Coverage for mlos_bench/mlos_bench/environments/remote/vm_env.py: 100%

4 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"""Remote VM (Host) Environment.""" 

6 

7import logging 

8 

9from mlos_bench.environments.remote.host_env import HostEnv 

10 

11_LOG = logging.getLogger(__name__) 

12 

13 

14class VMEnv(HostEnv): 

15 """ 

16 Remote VM/host environment. 

17 

18 Note: this is just a class alias for HostEnv for historical purposes. 

19 """