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 f98cc0b commit c5018b6Copy full SHA for c5018b6
.github/workflows/tests.yml
@@ -34,9 +34,13 @@ jobs:
34
run: poetry run flake8
35
36
- name: Test with pytest
37
- run: poetry run py.test --cov=./ --cov-report=xml
+ run: poetry run py.test --cov=./ --cov-append --cov-report=xml
38
+ env:
39
+ COV_CORE_SOURCE: .
40
+ COV_CORE_CONFIG: pyproject.toml
41
+ COV_CORE_DATAFILE: .coverage.eager
42
- - uses: codecov/codecov-action@v2
43
+ - uses: codecov/codecov-action@v3
44
with:
45
token: ${{ secrets.CODECOV_TOKEN }}
46
0 commit comments