Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci_servicex.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,13 @@ jobs:
if: ${{ matrix.app.test_required }}
run: |
PYTHONPATH=src poetry run python -m coverage run -m pytest -r sx
PYTHONPATH=src poetry run coverage xml
- name: Report coverage with Codecov
if: ${{ matrix.app.test_required }}
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml

publish:
needs: [build-matrix, test]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
{
"dir_name": "did_finder_rucio",
"image_name": "servicex-did-finder",
"test_required": false
"test_required": true
},
{
"dir_name": "did_finder_xrootd",
Expand Down
13 changes: 13 additions & 0 deletions code_generator_TopCPToolkit/.coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[run]
branch = True
source = servicex/

[report]
exclude_lines =
if self.debug:
pragma: no cover
raise NotImplementedError
if __name__ == .__main__.:
ignore_errors = True
omit =
tests/*
13 changes: 13 additions & 0 deletions code_generator_funcadl_uproot/.coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[run]
branch = True
source = uproot_code_generator/

[report]
exclude_lines =
if self.debug:
pragma: no cover
raise NotImplementedError
if __name__ == .__main__.:
ignore_errors = True
omit =
tests/*
2 changes: 1 addition & 1 deletion code_generator_funcadl_xAOD/.coveragerc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[run]
branch = True
source = servicex
source = xaod_code_generator/

[report]
exclude_lines =
Expand Down
13 changes: 13 additions & 0 deletions code_generator_python/.coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[run]
branch = True
source = python_code_generator/

[report]
exclude_lines =
if self.debug:
pragma: no cover
raise NotImplementedError
if __name__ == .__main__.:
ignore_errors = True
omit =
tests/*
13 changes: 13 additions & 0 deletions code_generator_raw_uproot/.coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[run]
branch = True
source = servicex/

[report]
exclude_lines =
if self.debug:
pragma: no cover
raise NotImplementedError
if __name__ == .__main__.:
ignore_errors = True
omit =
tests/*
13 changes: 13 additions & 0 deletions did_finder_cernopendata/.coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[run]
branch = True
source = src/

[report]
exclude_lines =
if self.debug:
pragma: no cover
raise NotImplementedError
if __name__ == .__main__.:
ignore_errors = True
omit =
tests/*
13 changes: 11 additions & 2 deletions did_finder_rucio/.coveragerc
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
[run]
branch = True
source =
src/
source = src/

[report]
exclude_lines =
if self.debug:
pragma: no cover
raise NotImplementedError
if __name__ == .__main__.:
ignore_errors = True
omit =
tests/*
13 changes: 13 additions & 0 deletions did_finder_xrootd/.coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[run]
branch = True
source = src/

[report]
exclude_lines =
if self.debug:
pragma: no cover
raise NotImplementedError
if __name__ == .__main__.:
ignore_errors = True
omit =
tests/*
13 changes: 13 additions & 0 deletions servicex_app/.coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[run]
branch = True
source = servicex_app/

[report]
exclude_lines =
if self.debug:
pragma: no cover
raise NotImplementedError
if __name__ == .__main__.:
ignore_errors = True
omit =
tests/*
13 changes: 13 additions & 0 deletions transformer_sidecar/.coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[run]
branch = True
source = src/

[report]
exclude_lines =
if self.debug:
pragma: no cover
raise NotImplementedError
if __name__ == .__main__.:
ignore_errors = True
omit =
tests/*