From 6b482695fb6332a971710aeb0c9f406122003bcc Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Sun, 16 Jan 2022 11:11:22 -0300 Subject: [PATCH] Avoid loosing light_control project during tests --- tests/test_plot/test_position.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_plot/test_position.py b/tests/test_plot/test_position.py index 86d2e04b..5ae5fb66 100644 --- a/tests/test_plot/test_position.py +++ b/tests/test_plot/test_position.py @@ -215,7 +215,7 @@ def test_position_rot_1(test_dir): ctx.expect_out_file(output) ctx.compare_txt(output) ctx.compare_txt(prj+'_bom_jlc.csv') - ctx.clean_up() + ctx.clean_up(keep_project=True) def test_position_rot_2(test_dir): @@ -226,7 +226,7 @@ def test_position_rot_2(test_dir): ctx.expect_out_file(output) ctx.compare_txt(output) ctx.compare_txt(prj+'_bom_jlc.csv') - ctx.clean_up() + ctx.clean_up(keep_project=True) def test_position_rot_3(test_dir): @@ -236,7 +236,7 @@ def test_position_rot_3(test_dir): output = prj+'_cpl_jlc_aux.csv' ctx.expect_out_file(output) ctx.compare_txt(output) - ctx.clean_up() + ctx.clean_up(keep_project=True) def test_position_rot_4(test_dir): @@ -246,7 +246,7 @@ def test_position_rot_4(test_dir): output = prj+'_cpl_jlc_aux.csv' ctx.expect_out_file(output) ctx.compare_txt(output) - ctx.clean_up() + ctx.clean_up(keep_project=True) def test_rot_bottom(test_dir):