Skip to content

Commit

Permalink
ENH: Report code coverage in CI
Browse files Browse the repository at this point in the history
Report code coverage in CI: restores reporting coverage after dropping
it in commit `035eebd` due to incompatibilities with the testing
framework used at the time (`nose`). `nose` was replaced by `pytest` in
commit e36ee38.
  • Loading branch information
jhlegarreta committed Dec 10, 2024
1 parent 93ab73f commit 41e27db
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test_package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,9 @@ jobs:
- name: Run tests
run: |
pytest -v
coverage run --source tract_querier -m pytest -v tract_querier
- name: Statistics
if: success()
run: |
coverage report

0 comments on commit 41e27db

Please sign in to comment.