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

3 statements  

« prev     ^ index     » next       coverage.py v7.5.1, created at 2024-05-05 00:36 +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""" 

8 

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

10 

11 

12__all__ = [ 

13 'ConfigSchema', 

14 'CONFIG_SCHEMA_DIR', 

15]