Skip to content
Snippets Groups Projects

Resolve "Add pytest to CI"

Merged Jeremy Mathews requested to merge 25-AddPytestCI into develop
@@ -6,8 +6,10 @@ from io import StringIO
import os
test_output_path = os.path.dirname(os.path.abspath(__file__)) + \
'/../../test/misc/checkDesignFile/**/'
'/../output/misc/checkDesignFile/**/'
@pytest.mark.design
def test_design():
assert os.path.exists(os.path.join(test_output_path, design.checked.csv))
design_file = os.path.join(test_output_path, 'design.checked.csv')
print(design_file)
assert os.path.exists(design_file)