We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7626a2 commit 080cab2Copy full SHA for 080cab2
.github/workflows/ci.yml
@@ -15,13 +15,15 @@ jobs:
15
- name: Install dependencies
16
run: pip install -r requirements.txt
17
- name: Run tests and collect coverage
18
- run: pytest --cov app --junitxml=junit.xml -o junit_family=legacy
+ run: |
19
+ pytest --cov app --junitxml=junit.xml -o junit_family=legacy
20
+ coverage json
21
- name: Upload test results to Codecov
22
if: ${{ !cancelled() }}
23
uses: codecov/codecov-action@main
24
with:
25
token: ${{ secrets.CODECOV_TOKEN }}
- report-type: test_results
26
+ report_type: test_results
27
- name: Upload coverage to Codecov (arg token)
28
29
0 commit comments