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 ce0c0a1 commit 98392ceCopy full SHA for 98392ce
.coveragerc
@@ -0,0 +1,7 @@
1
+[run]
2
+relative_files = true
3
+[report]
4
+exclude_lines =
5
+ pragma: no cover
6
+ def __repr__
7
+ raise NotImplementedError
.github/workflows/ci.yaml
@@ -64,7 +64,7 @@ jobs:
64
65
- name: Run Tests with Coverage
66
run: |
67
- poetry run coverage run -m pytest
+ poetry run coverage run --rcfile=.coveragerc -m pytest
68
poetry run coverage xml -i -o coverage.xml
69
env:
70
COVERAGE_FILE: ".coverage.${{ matrix.python-version }}"
0 commit comments