From 4e1029c2838364259eb2d9da2eba8bf75c6a98e7 Mon Sep 17 00:00:00 2001 From: mashehu Date: Wed, 13 Dec 2023 11:37:11 +0100 Subject: [PATCH] trying to fix the source error --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 73b340f552..24bf99d9b8 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -125,7 +125,7 @@ jobs: - name: Test with pytest run: | echo "Which nf-core: $(which nf-core)" - python3 -m pytest tests/${{matrix.test}} --color=yes --cov-report=xml --cov-config=.github/.coveragerc --cov=nf_core -s --durations=0 || exit_code=$? + python3 -m pytest tests/${{matrix.test}} --color=yes --cov-report=xml --cov-config=.github/.coveragerc -s --durations=0 || exit_code=$? # don't fail if no tests were collected, e.g. for test_licence.py if [ "${exit_code}" -eq 5 ]; then echo "No tests were collected"