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

fix syntax

parent 0c7feead
Branches
Tags
2 merge requests!41Develop,!40Resolve "Add pytest to CI"
Pipeline #4439 passed with stages
in 2 minutes and 34 seconds
......@@ -12,5 +12,5 @@ test_output_path = os.path.dirname(os.path.abspath(__file__)) + \
@pytest.mark.fastqc
def test_fastqc_output():
fastqcs = glob.glob('/../../test/mkfastq/*/outs/fastq_path/*/*/*.fastq.gz', recursive=True)
for f in fastqcs
assert os.path.exists(os.path.join(test_output_path, f))
for f in fastqcs:
assert os.path.exists(os.path.join(test_output_path, f))
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