Skip to content

Commit 98392ce

Browse files
committed
fix actions
1 parent ce0c0a1 commit 98392ce

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.coveragerc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
6565
- name: Run Tests with Coverage
6666
run: |
67-
poetry run coverage run -m pytest
67+
poetry run coverage run --rcfile=.coveragerc -m pytest
6868
poetry run coverage xml -i -o coverage.xml
6969
env:
7070
COVERAGE_FILE: ".coverage.${{ matrix.python-version }}"

0 commit comments

Comments
 (0)