We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5c46ee commit b3aa684Copy full SHA for b3aa684
.github/workflows/codecov.yml
@@ -33,11 +33,14 @@ jobs:
33
run: |
34
python -c "import os; print(os.getcwd())"
35
python -m pytest . --ignore=solutions --log-cli-level=INFO -v --cov-report term-missing --cov --cov-branch --cov-report=xml
36
+ - name: List test files
37
+ run: |
38
+ ls *.xml
39
# yamllint enable rule:line-length
40
- name: Upload coverage to Codecov
41
uses: codecov/codecov-action@v5.5.0
42
with:
- CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
43
+ token: ${{ secrets.CODECOV_TOKEN }}
44
files: coverage.xml
45
fail_ci_if_error: true # optional (default = false)
46
verbose: true # optional (default = false)cd
0 commit comments