From c6b07eec549e57971308475faf1845a02b3ccc6b Mon Sep 17 00:00:00 2001 From: Renz Christian Bagaporo Date: Fri, 1 Feb 2019 15:07:32 +0800 Subject: [PATCH] ci: copy flasher_args.json to unit test output folder --- tools/unit-test-app/idf_ext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/unit-test-app/idf_ext.py b/tools/unit-test-app/idf_ext.py index f0f76a52c..06b843f01 100644 --- a/tools/unit-test-app/idf_ext.py +++ b/tools/unit-test-app/idf_ext.py @@ -215,7 +215,7 @@ def add_action_extensions(base_functions, base_actions): pass shutil.copyfile(partition_table, os.path.join(dest, "partition_table", os.path.basename(partition_table))) - shutil.copyfile(os.path.join(src, "flash_project_args"), os.path.join(dest, "flash_project_args")) + shutil.copyfile(os.path.join(src, "flasher_args.json"), os.path.join(dest, "flasher_args.json")) binaries = glob.glob(os.path.join(src, "*.bin")) binaries = [os.path.basename(s) for s in binaries]