From 2f4b7118e25bcfb954921d013bdd4c1bcfdf5ee7 Mon Sep 17 00:00:00 2001 From: checktheroads Date: Sun, 16 Jun 2019 22:37:52 -0700 Subject: [PATCH] added debug statement for getting config_dir contents after copy --- ci/ci_prepare.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/ci_prepare.py b/ci/ci_prepare.py index 3009867..303a4c1 100644 --- a/ci/ci_prepare.py +++ b/ci/ci_prepare.py @@ -25,11 +25,12 @@ def ci_copy_config(): if os.path.exists(file): logger.debug(f"{file} already exists") os.remove(file) - logger.debug(f"Deleted {file}") + logger.info(f"Deleted {file}") for file in test_files: try: shutil.copy(file, config_dir) logger.debug(f"Copied {file}") + logger.debug(os.listdir(config_dir)) logger.info("Successfully migrated test config files") status = True except: