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

Update test files

parent 6955255a
2 merge requests!41Develop,!40Resolve "Add pytest to CI"
Pipeline #4446 failed with stages
in 2 minutes and 7 seconds
This commit is part of merge request !40. Comments created here will be created in the context of that merge request.
......@@ -10,4 +10,4 @@ test_output_path = os.path.dirname(os.path.abspath(__file__)) + \
@pytest.mark.design
def test_design():
assert os.path.exists(os.path.join(test_output_path, design.checked.csv))
assert os.path.exists(os.path.join(test_output_path, 'design.checked.csv'))
......@@ -10,4 +10,4 @@ test_output_path = os.path.dirname(os.path.abspath(__file__)) + \
@pytest.mark.multiqc
def test_multiqc():
assert os.path.exists(os.path.join(test_output_path, multiqc_report.html))
assert os.path.exists(os.path.join(test_output_path, 'multiqc_report.html'))
......@@ -10,4 +10,4 @@ test_output_path = os.path.dirname(os.path.abspath(__file__)) + \
@pytest.mark.untarBCL
def test_untarBCL():
assert os.path.exists(os.path.join(test_output_path, RTAComplete.txt))
assert os.path.exists(os.path.join(test_output_path, 'RTAComplete.txt'))
......@@ -10,5 +10,5 @@ test_output_path = os.path.dirname(os.path.abspath(__file__)) + \
@pytest.mark.versions
def test_versions():
assert os.path.exists(os.path.join(test_output_path, versions_mqc.yaml))
assert os.path.exists(os.path.join(test_output_path, references_mqc.yaml))
assert os.path.exists(os.path.join(test_output_path, 'versions_mqc.yaml'))
assert os.path.exists(os.path.join(test_output_path, 'references_mqc.yaml'))
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