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