From f28540d9cc2d54a617aa152bebff414621582fed Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Tue, 2 Jan 2024 10:46:45 -0300 Subject: [PATCH] [Tests][Fixed] Quick Start test - To include the project, now mandatory --- tests/test_plot/test_misc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_plot/test_misc.py b/tests/test_plot/test_misc.py index 2817965a..8d8fce24 100644 --- a/tests/test_plot/test_misc.py +++ b/tests/test_plot/test_misc.py @@ -1233,6 +1233,7 @@ def test_quick_start_1(test_dir): dest_file = os.path.join(dest_dir, board_file) os.makedirs(dest_dir, exist_ok=True) shutil.copy2(ctx.board_file, dest_file) + shutil.copy2(ctx.board_file.replace('.kicad_pcb', context.PRO_EXT), dest_file.replace('.kicad_pcb', context.PRO_EXT)) sch_file = os.path.basename(ctx.sch_file) dest_file_sch = os.path.join(dest_dir, sch_file) shutil.copy2(ctx.sch_file, dest_file_sch)