Skip to content

Commit

Permalink
add coverage report output
Browse files Browse the repository at this point in the history
  • Loading branch information
asgibson committed Aug 4, 2023
1 parent 1a58513 commit 0ead2f6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@ jobs:
python -m pip install --upgrade pip
if [ -f requirements_pip.txt ]; then pip install -r requirements_pip.txt; fi
- name: Test with pytest
run: python -m coverage run --branch --source=src,data_handling,utils -m pytest ./test/
run: |
python -m coverage run --branch --source=src,data_handling,utils -m pytest ./test/
coverage report

0 comments on commit 0ead2f6

Please sign in to comment.