Skip to content

Commit

Permalink
Remove unused codecov dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
rmjarvis committed Apr 12, 2023
1 parent 728d297 commit 3b6b5b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
pip install -U -r requirements.txt
# Extra packages needed for testing
pip install -U nose codecov mpi4py coverage mockmpi pytest
pip install -U nose mpi4py coverage mockmpi pytest
# Note: I'd rather include h5py here, but I can't get it to install properly
# on GHA for pypy3. So only do that for regular py3.
Expand Down Expand Up @@ -141,14 +141,14 @@ jobs:
- name: Upload coverage to codecov
if: matrix.os != 'windows-latest'
#uses: codecov/codecov-action@v1 # This didn't work for me.
# TODO: Supposedly there is a v2 now that might work better.
run: |
cd tests
pwd -P
ls -la
coverage combine || true # (Not necessary I think, but just in case.)
coverage report
ls -la
#codecov # This also didn't work.
# cf. https://community.codecov.io/t/github-not-getting-codecov-report-after-switching-from-travis-to-github-actions-for-ci/
# The solution was to switch to the bash uploader line instead.
bash <(curl -s https://codecov.io/bash)
Expand Down

0 comments on commit 3b6b5b3

Please sign in to comment.