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 0d4c9d0 commit 5970ca9Copy full SHA for 5970ca9
pyproject.toml
@@ -99,12 +99,16 @@ module = [
99
]
100
ignore_missing_imports = true
101
102
-
103
-[tool.coverage.run]
104
-omit = ['*/__init__.py']
105
106
-#[tool.coverage.paths]
107
-#source = ['flake8_force_keyword_arguments']
108
109
[tool.coverage.report]
110
-exclude_lines = ['pragma: no cover']
+exclude_lines = [
+ "pragma: no cover",
+ "def __repr__",
+ "if self.debug:",
+ "if settings.DEBUG",
+ "raise AssertionError",
+ "raise NotImplementedError",
+ "if 0:",
111
+ "if __name__ == .__main__.:",
112
+ "class .*\\bProtocol\\):",
113
+ "@(abc\\.)?abstractmethod",
114
+]
0 commit comments