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 1d64869 commit f18c659Copy full SHA for f18c659
.github/workflows/ci.yml
@@ -15,7 +15,12 @@ jobs:
15
- name: Install dependencies
16
run: pip install -r requirements.txt
17
- name: Run tests and collect coverage
18
- run: pytest --cov app
+ run: pytest --cov app --junitxml=junit.xml -o junit_family=legacy
19
+ - name: Upload test results to Codecov
20
+ if: ${{ !cancelled() }}
21
+ uses: codecov/test-results-action@v1
22
+ with:
23
+ token: ${{ secrets.CODECOV_TOKEN }}
24
- name: Upload coverage to Codecov (arg token)
25
uses: codecov/codecov-action@main
26
with:
0 commit comments