From 0ebedc398cf3760c0db8c2572d4603affc2a80cd Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Wed, 14 Oct 2020 16:07:09 -0300 Subject: [PATCH] Renamed ERC/DRC tests to run them individually. --- tests/test_plot/test_preflight.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_plot/test_preflight.py b/tests/test_plot/test_preflight.py index cc0b52af..58492e65 100644 --- a/tests/test_plot/test_preflight.py +++ b/tests/test_plot/test_preflight.py @@ -26,7 +26,7 @@ from utils import context from kibot.misc import (DRC_ERROR, ERC_ERROR, BOM_ERROR) -def test_erc(): +def test_erc_1(): prj = 'bom' ctx = context.TestContext('ERC', prj, 'erc', '') ctx.run() @@ -53,7 +53,7 @@ def test_erc_fail_2(): ctx.clean_up() -def test_drc(): +def test_drc_1(): prj = 'bom' ctx = context.TestContext('DRC', prj, 'drc', '') ctx.run()