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

2 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"""A module for managing config schemas and their validation.""" 

6 

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

8 

9__all__ = [ 

10 "ConfigSchema", 

11 "CONFIG_SCHEMA_DIR", 

12]