We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17bfdc6 commit e0f3907Copy full SHA for e0f3907
.github/workflows/hiperseis_main_ci.yml
@@ -42,9 +42,8 @@ jobs:
42
sudo apt-get install openmpi-bin libopenmpi-dev
43
sudo apt-get install libhdf5-dev
44
pip install -r tests/requirements.txt
45
- coverage run -m pytest ./tests
46
- coverage xml
47
- - name: Coveralls GitHub Action
48
- uses: coverallsapp/github-action@main
+ pytest --cov --cov-branch --cov-report=xml
+ - name: Upload coverage reports to Codecov
+ uses: codecov/codecov-action@main
49
with:
50
- format: cobertura
+ token: ${{ secrets.CODECOV_TOKEN }}
tests/requirements.txt
@@ -1,5 +1,5 @@
1
pytest
2
-coveralls
+pytest-cov
3
coverage
4
requests_mock
5
pyyaml
0 commit comments