upload coverage even if failed
This commit is contained in:
parent
ed7131f0ac
commit
e14012ab0b
1 changed files with 2 additions and 1 deletions
3
.github/workflows/test.yml
vendored
3
.github/workflows/test.yml
vendored
|
|
@ -49,9 +49,10 @@ jobs:
|
|||
run: mypy --strict wwvb uwwvb.py
|
||||
|
||||
- name: Test
|
||||
run: python -mcoverage run --branch -m unittest && python -mcoverage report --fail-under=100 && python -mcoverage xml
|
||||
run: python -mcoverage run --branch -m unittest && python -mcoverage xml && python -mcoverage report --fail-under=100
|
||||
|
||||
- name: Upload Coverage to Codecov
|
||||
if: always()
|
||||
uses: codecov/codecov-action@v2
|
||||
with:
|
||||
env_vars: PYTHON
|
||||
|
|
|
|||
Loading…
Reference in a new issue