diff --git a/.github/workflows/step_tests-conda.yml b/.github/workflows/step_tests-conda.yml index 022d9c90..1f00c1a2 100644 --- a/.github/workflows/step_tests-conda.yml +++ b/.github/workflows/step_tests-conda.yml @@ -59,11 +59,11 @@ jobs: - name: Test with pytest # We use an explicit coverage file otherwise the # codecov action below does not find it - run: pytest --cov . --cov-report xml:/home/runner/coverage.xml + run: pytest --cov . --cov-report xml:coverage.xml - name: Upload coverage uses: codecov/codecov-action@v3 with: fail_ci_if_error: true verbose: true - files: /home/runner/coverage.xml + files: coverage.xml