Skip to content
Snippets Groups Projects
Commit e981dbff authored by Jeremy Mathews's avatar Jeremy Mathews
Browse files

make literal

parent d2faf5be
Branches
Tags
2 merge requests!41Develop,!40Resolve "Add pytest to CI"
Pipeline #4454 failed with stages
in 6 minutes and 13 seconds
......@@ -6,10 +6,9 @@ from io import StringIO
import os
test_output_path = os.path.dirname(os.path.abspath(__file__)) + \
'/../output/misc/checkDesignFile/**/'
"/../output/misc/checkDesignFile/**/"
@pytest.mark.design
def test_design():
design_file = os.path.join(test_output_path, 'design.checked.csv')
print(design_file)
design_file = os.path.join(test_output_path, "design.checked.csv")
assert os.path.exists(design_file)
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment