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 437c6f2 commit 62c974dCopy full SHA for 62c974d
.github/workflows/ci.yaml
@@ -52,13 +52,14 @@ jobs:
52
53
- name: Test with pytest
54
run: |
55
- coverage run -m pytest tests --cov=./servicex/ --cov-report=xml
+ coverage run --source servicex/ -m pytest tests
56
+ coverage xml
57
58
- name: Upload coverage to Codecov
59
uses: codecov/codecov-action@v5
60
with:
61
token: ${{ secrets.CODECOV_TOKEN }}
- directory: ./coverage/reports/
62
env_vars: OS,PYTHON
63
files: ./coverage.xml
64
+ disable_search: true
65
flags: unittests
0 commit comments