[Tests][Fixed] Quick Start test

- To include the project, now mandatory
This commit is contained in:
Salvador E. Tropea 2024-01-02 10:46:45 -03:00
parent 0feb739edf
commit f28540d9cc
1 changed files with 1 additions and 0 deletions

View File

@ -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)