Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky committed Apr 27, 2023
1 parent c5fb1a9 commit 70efe68
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,13 +139,15 @@ jobs:
if: always()
run: |
set -o pipefail
coverage report --rcfile=.coveragerc --data-file=coverage-reports/.coverage --include='chia/*' --show-missing | tee coverage-reports/coverage-chia-stdout
# need **/ prefixed, see https://github.com/nedbat/coveragepy/issues/1604
coverage report --rcfile=.coveragerc --data-file=coverage-reports/.coverage --include='**/chia/**/*' --show-missing | tee coverage-reports/coverage-chia-stdout
- name: Coverage report (tests/)
if: always()
run: |
set -o pipefail
coverage report --rcfile=.coveragerc --data-file=coverage-reports/.coverage --include='tests/*' --show-missing | tee coverage-reports/coverage-tests-stdout
# need **/ prefixed, see https://github.com/nedbat/coveragepy/issues/1604
coverage report --rcfile=.coveragerc --data-file=coverage-reports/.coverage --include='**/tests/**/*' --show-missing | tee coverage-reports/coverage-tests-stdout
- name: Coverage report (diff)
if: always()
Expand Down

0 comments on commit 70efe68

Please sign in to comment.