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 695dbdc commit 34d3643Copy full SHA for 34d3643
.coveragerc
pyproject.toml
@@ -134,3 +134,23 @@ module = [
134
"bpython",
135
]
136
ignore_missing_imports = true
137
+
138
+[tool.coverage.run]
139
+branch = true
140
+source = "tmuxp"
141
+omit = [
142
+ "tests/*",
143
+ "*/_vendor/*",
144
+ "*/_*",
145
+ "pkg/*",
146
+ "*/log.py"
147
+]
148
149
+[tool.coverage.report]
150
+exclude_lines = [
151
+ "pragma: no cover",
152
+ "def __repr__",
153
+ "raise NotImplementedError",
154
+ "if __name__ == .__main__.:",
155
+ "def parse_args"
156
0 commit comments