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 f8b53c1 commit 385ace4Copy full SHA for 385ace4
.coveragerc
@@ -15,5 +15,11 @@ exclude_lines =
15
# Don't complain if tests don't hit defensive assertion code:
16
raise NotImplementedError
17
18
+ # Code for static analysis is never covered:
19
+ if typing.TYPE_CHECKING:
20
+
21
+ # Fallback code with no installed deps is almost impossible to cover properly
22
+ except ImportError:
23
24
# Don't complain if non-runnable code isn't run:
25
if __name__ == .__main__.:
0 commit comments