Skip to content

Commit

Permalink
Fix pytest coverage command
Browse files Browse the repository at this point in the history
  • Loading branch information
spalmurray-codecov committed Sep 17, 2024
1 parent 0865720 commit 8964b8a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
},
Pytest: {
install: 'pip install pytest pytest-cov',
run: 'pytest --cov',
run: 'pytest --cov --cov-report=xml',
workflow: `name: Run tests and upload coverage
on:
Expand All @@ -159,7 +159,7 @@ jobs:
run: pip install pytest pytest-cov
- name: Run tests
run: pytest --cov
run: pytest --cov --cov-report=xml
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
Expand Down

0 comments on commit 8964b8a

Please sign in to comment.