Skip to content
Snippets Groups Projects

Resolve "Add pytest to CI"

Merged Jeremy Mathews requested to merge 25-AddPytestCI into develop
@@ -8,7 +8,10 @@ import os
test_output_path = os.path.dirname(os.path.abspath(__file__)) + \
'/../output/misc/checkDesignFile/run/'
@pytest.mark.design
def test_design():
design_file = os.path.join(test_output_path, 'design.checked.csv')
assert os.path.exists(design_file)
@pytest.mark.simple1
def test_simple1_design():
assert os.path.exists(os.path.join(test_output_path, 'design.checked.csv'))
@pytest.mark.simple2
def test_simple2_design():
assert os.path.exists(os.path.join(test_output_path, 'design.checked.csv'))