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 e966841 commit 5f230f6Copy full SHA for 5f230f6
.github/workflows/pytest.yml
@@ -58,11 +58,12 @@ jobs:
58
run: |
59
python -m pip install black pytest sphinx sphinx-rtd-theme
60
python -m pip install coveralls pytest-cov
61
- pytest --cov=./
+ pytest --cov=./ --cov-report=xml
62
63
- name: Upload coverage to Codecov
64
- uses: codecov/codecov-action@v3
+ uses: codecov/codecov-action@v4
65
with:
66
- flags: unittests
67
fail_ci_if_error: true
+ flags: unittests
68
+ token: ${{ secrets.CODECOV_TOKEN }}
69
codecov.yml
@@ -1,2 +1,2 @@
1
ignore:
2
- - "*/tests/*”
+ - "*/tests/*"
0 commit comments