We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f240f7f + 39e6342 commit da9bd5fCopy full SHA for da9bd5f
.coveragerc
@@ -3,11 +3,18 @@ branch = True
3
source = serde
4
5
[report]
6
-exclude_lines =
+exclude_also =
7
+ def __repr__
8
if self.debug:
- pragma: no cover
9
+ if settings.DEBUG
10
+ raise AssertionError
11
raise NotImplementedError
12
+ if 0:
13
if __name__ == .__main__.:
14
+ if TYPE_CHECKING:
15
+ class .*\bProtocol\):
16
+ @(abc\.)?abstractmethod
17
+ @overload
18
ignore_errors = True
19
omit =
20
tests/*
pyproject.toml
@@ -57,7 +57,7 @@ pytest = "*"
57
pytest-cov = "*"
58
pytest-watch = "*"
59
pytest-flake8 = "*"
60
-coverage = "==4.5.4"
+coverage = "==7.2.7"
61
pdoc = "^13"
62
more-itertools = "~=8.6.0"
63
pre-commit = "==v2.10.1"
0 commit comments