From 8404cd7613d8bd874fa1cb0cbed1d4d3015f8208 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Fri, 12 May 2023 09:51:45 -0300 Subject: [PATCH] [Tests][Fixed] test_step_alias_2 fails - Cascaded by other fails --- tests/test_plot/test_step.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_plot/test_step.py b/tests/test_plot/test_step.py index 257faf65..05c0653b 100644 --- a/tests/test_plot/test_step.py +++ b/tests/test_plot/test_step.py @@ -115,11 +115,12 @@ def test_step_alias_2(test_dir): def test_step_variant_1(test_dir): prj = 'kibom-variant_3' ctx = context.TestContext(test_dir, prj, 'step_variant_1') + tmps_before = glob(os.path.join(ctx.get_board_dir(), 'tmp*pro')) ctx.run(extra_debug=True) # Check all outputs are there ctx.expect_out_file(prj+'-3D.step') tmps = glob(os.path.join(ctx.get_board_dir(), 'tmp*pro')) - assert len(tmps) == 0, tmps + assert len(tmps) == len(tmps_before), tmps ctx.clean_up(keep_project=True)