[Tests][ERC][KiCad 8] Warning test now needs a project

- Avoid removing it
This commit is contained in:
Salvador E. Tropea 2023-04-13 11:24:44 -03:00
parent 8b0204b0d2
commit 50040a9355
1 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ def test_erc_warning_1(test_dir):
# Check all outputs are there
ctx.expect_out_file(prj+'-erc.txt')
ctx.search_err(r"WARNING:\(W058\) 1 ERC warnings detected")
ctx.clean_up()
ctx.clean_up(keep_project=context.ki8())
@pytest.mark.slow
@ -77,7 +77,7 @@ def test_erc_warning_2(test_dir):
# Check all outputs are there
ctx.expect_out_file(prj+'-erc.txt', sub=True)
ctx.search_err(r"ERROR:1 ERC errors detected")
ctx.clean_up()
ctx.clean_up(keep_project=context.ki8())
@pytest.mark.slow