Coverage for mlos_bench/mlos_bench/config/schemas/__init__.py: 100%

2 statements  

« 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""" 

6A module for managing config schemas and their validation. 

7 

8See Also 

9-------- 

10mlos_bench.config.schemas.config_schemas : The module handling the actual schema 

11 definitions and validation. 

12""" 

13 

14from mlos_bench.config.schemas.config_schemas import CONFIG_SCHEMA_DIR, ConfigSchema 

15 

16__all__ = [ 

17 "ConfigSchema", 

18 "CONFIG_SCHEMA_DIR", 

19]