We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5455a5 commit 39ddbf6Copy full SHA for 39ddbf6
.coveragerc
@@ -42,10 +42,20 @@ timid = False
42
exclude_lines =
43
pragma: no cover
44
def __repr__
45
+ # Don't complain if tests don't hit defensive assertion code:
46
raise NotImplementedError
47
+ return NotImplemented
48
+
49
if __name__ == .__main__.:
50
def parse_args
51
def main
52
53
+ # Ignore type checking code:
54
+ if (typing\.)?TYPE_CHECKING:
55
+ @overload( |$)
56
57
+ # Don't complain about ellipsis (exception classes, typing overloads etc):
58
+ \.\.\.
59
fail_under=0
60
ignore_errors = False
61
omit =
0 commit comments