Skip to content

Commit 080cab2

Browse files
fix: coverage json
1 parent c7626a2 commit 080cab2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@ jobs:
1515
- name: Install dependencies
1616
run: pip install -r requirements.txt
1717
- name: Run tests and collect coverage
18-
run: pytest --cov app --junitxml=junit.xml -o junit_family=legacy
18+
run: |
19+
pytest --cov app --junitxml=junit.xml -o junit_family=legacy
20+
coverage json
1921
- name: Upload test results to Codecov
2022
if: ${{ !cancelled() }}
2123
uses: codecov/codecov-action@main
2224
with:
2325
token: ${{ secrets.CODECOV_TOKEN }}
24-
report-type: test_results
26+
report_type: test_results
2527
- name: Upload coverage to Codecov (arg token)
2628
uses: codecov/codecov-action@main
2729
with:

0 commit comments

Comments
 (0)