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 6d090de commit c1cbab3
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,12 @@ jobs:
coverage run --context=${{ matrix.os }}.py${{ matrix.python-version }} --source=wntr --omit="*/tests/*","*/sim/network_isolation/network_isolation.py","*/sim/aml/evaluator.py" --append -m pytest --doctest-glob="*.rst" documentation
env:
COVERAGE_FILE: .coverage.${{ matrix.python-version }}.${{ matrix.os }}
- name: view files
run: |
[ -f .coverage.${{ matrix.python-version }}.${{ matrix.os }} ] && echo "File exists" || echo "File does not exist"
- name: Save coverage
uses: actions/upload-artifact@v4
with:
name: .coverage.${{ matrix.python-version }}.${{ matrix.os }}
path: '.coverage.*'
path: .coverage.${{ matrix.python-version }}.${{ matrix.os }}
include-hidden-files:
combine_reports:
needs: [ pytest_coverage ]
runs-on: ubuntu-latest
Expand Down

0 comments on commit c1cbab3

Please sign in to comment.