1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

💚 Make CI copy YAML instead of TOML

This commit is contained in:
Matt Love
2019-07-10 16:09:14 -07:00
parent 771b16cf64
commit e413ffd155

@ -15,8 +15,8 @@ def ci_copy_config():
"""Copies test configuration files to usable config files"""
logger.info("Migrating test config files...")
config_dir = os.path.join(parent_directory, "hyperglass/configuration/")
test_files = glob.iglob(os.path.join(working_directory, "*.toml"))
config_files = glob.iglob(os.path.join(config_dir, "*.toml"))
test_files = glob.iglob(os.path.join(working_directory, "*.yaml"))
config_files = glob.iglob(os.path.join(config_dir, "*.yaml"))
logger.debug(config_dir)
logger.debug(working_directory)
logger.debug(parent_directory)