We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57b1650 commit 95d10f8Copy full SHA for 95d10f8
.github/workflows/ci.yml
@@ -15,12 +15,13 @@ 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-branch --cov-report=xml
19
- name: Upload coverage to Codecov (arg token)
20
uses: codecov/codecov-action@main
21
with:
22
fail_ci_if_error: true
23
token: ${{ secrets.CODECOV_TOKEN }}
24
+ slug: test-org-20241/example-python
25
verbose: true
26
- name: Upload coverage to Codecov (env token)
27
0 commit comments