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

5 statements  

« prev     ^ index     » next       coverage.py v7.5.1, created at 2024-05-06 00:35 +0000

1# 

2# Copyright (c) Microsoft Corporation. 

3# Licensed under the MIT License. 

4# 

5""" 

6"Remote" VM (Host) Environment. 

7""" 

8 

9import logging 

10 

11from mlos_bench.environments.remote.host_env import HostEnv 

12 

13_LOG = logging.getLogger(__name__) 

14 

15 

16class VMEnv(HostEnv): 

17 """ 

18 Remote VM/host environment. 

19 

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

21 """