Skip to content

Commit

Permalink
make 'Show uncovered lines' a separate step
Browse files Browse the repository at this point in the history
Otherwise will not see the uncovered lines at all.
  • Loading branch information
fohrloop committed May 9, 2024
1 parent c574e52 commit 7eb2745
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-and-run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,12 @@ jobs:
run: |
python -m pip install ${{ env.TOX_REQUIREMENT }}
tox -e ${{ matrix.python-version }} --skip-build
tox -e show-uncovered-lines
tox -e mypy --skip-build
- name: Show uncovered lines
if: success() || failure()
run: tox -e show-uncovered-lines

check-code:
# Reasons this is a separate job
# (1) This runs fast. Different from the other steps, this does not require
Expand Down

0 comments on commit 7eb2745

Please sign in to comment.