forked from mirrors/thatmattlove-hyperglass
fixed os.path issue
This commit is contained in:
parent
ddbc8f95b7
commit
f20c48fb1c
1 changed files with 1 additions and 4 deletions
|
|
@ -13,11 +13,8 @@ def ci_config():
|
|||
"""Copies test configuration files to usable config files"""
|
||||
logger.info("Migrating test config files...")
|
||||
config_dir = os.path.join(working_directory, "hyperglass/configuration/")
|
||||
ci_dir = os.path.join(working_directory, "ci/")
|
||||
test_files = glob.iglob(os.path.join(ci_dir, "*.toml"))
|
||||
test_files = glob.iglob(os.path.join(working_directory, "*.toml"))
|
||||
logger.debug(config_dir)
|
||||
logger.debug(ci_dir)
|
||||
logger.debug(test_files)
|
||||
status = False
|
||||
for f in test_files:
|
||||
logger.debug(f)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue