[Tests][Fixed] test_step_alias_2 fails

- Cascaded by other fails
This commit is contained in:
Salvador E. Tropea 2023-05-12 09:51:45 -03:00
parent 7096476da6
commit 8404cd7613
1 changed files with 2 additions and 1 deletions

View File

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