Skip to content

Commit

Permalink
Further attempt at uploading coverage report
Browse files Browse the repository at this point in the history
  • Loading branch information
jackleland committed Feb 28, 2024
1 parent 54db27d commit 2a38264
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,13 @@ jobs:
- name: Test with pytest
run: |
python -m pytest --cov=.
python -m coverage run -m pytest report
cp .coverage .coverage.${{ matrix.python-version }}
- name: upload coverage report
- name: Upload coverage report
uses: actions/upload-artifact@v1
with:
name: "coverage-data"
path: .coverage.*
path: .coverage.${{ matrix.python-version }}
if-no-files-found: ignore

coverage:
Expand Down

0 comments on commit 2a38264

Please sign in to comment.