We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7fdd02 commit 8a1fa1fCopy full SHA for 8a1fa1f
.github/workflows/all_tests_nnpdf.yml
@@ -115,4 +115,4 @@ jobs:
115
- name: Merge and show
116
run: |
117
coverage combine reports/**/.coverage
118
- coverage report
+ coverage report -i
pyproject.toml
@@ -152,7 +152,15 @@ addopts = "--disable-warnings"
152
153
[tool.coverage.run]
154
omit = [
155
+ "*/local*",
156
+ "*/rule*",
157
"deprecated_functions.py",
158
"*/nnpdf_data/commondata/*",
159
"*/nnpdf_data/filter_utils/*",
160
]
161
+[tool.coverage.paths]
162
+cipaths = [ # In order to combine files from both the ubuntu and macos runners
163
+ "./", # CI working directory
164
+ "/Users/runner/work/nnpdf/nnpdf",
165
+ "/home/runner/work/nnpdf/nnpdf"
166
+]
0 commit comments