Skip to content

Commit

Permalink
another attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
kbonney committed Sep 25, 2024
1 parent 4c959b7 commit 4021067
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/build_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,16 @@ jobs:
with:
pattern: .coverage.*
- name: Setup coverage and combine reports
run: |
ls -la
coverage combine .coverage.*
run: coverage combine .coverage.*
- name: Create coverage report
run: |
echo "[paths]" > .coveragerc
echo "source = " >> .coveragerc
echo " wntr/" >> .coveragerc
echo " wntr\\" >> .coveragerc
echo " D:\\a\\WNTR\\WNTR\\wntr" >> .coveragerc
echo " /home/runner/work/WNTR/WNTR/wntr" >> .coveragerc
echo " /Users/runner/work/WNTR/WNTR/wntr" >> .coveragerc
coverage report
coverage json --pretty-print
coverage html --show-contexts
Expand Down

0 comments on commit 4021067

Please sign in to comment.