diff options
Diffstat (limited to '.github/workflows/codeqa-test.yml')
| -rw-r--r-- | .github/workflows/codeqa-test.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/codeqa-test.yml b/.github/workflows/codeqa-test.yml index d176bdb..0050bdd 100644 --- a/.github/workflows/codeqa-test.yml +++ b/.github/workflows/codeqa-test.yml @@ -47,4 +47,8 @@ jobs: - name: Install test dependencies run: pip install .[test] - name: Test with pytest - run: python -b -m pytest -W always + run: python -b -m pytest -W always --cov-report=xml:pytest-cov.xml + - name: Send coverage data to Codecov + uses: codecov/codecov-action@v1 + with: + file: pytest-cov.xml |
