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 340f89cCopy full SHA for 340f89c
.coveragerc
pyproject.toml
@@ -119,6 +119,28 @@ lint = [
119
"types-docutils",
120
]
121
122
+[tool.coverage.run]
123
+branch = true
124
+source = [
125
+ "tmuxp",
126
+]
127
+omit = [
128
+ "tests/*",
129
+ "*/_vendor/*",
130
+ "*/_*",
131
+ "pkg/*",
132
+ "*/log.py",
133
134
+
135
+[tool.coverage.report]
136
+exclude_lines = [
137
+ "pragma: no cover",
138
+ "def __repr__",
139
+ "raise NotImplementedError",
140
+ "if __name__ == .__main__.:",
141
+ "def parse_args",
142
143
144
[build-system]
145
requires = ["poetry_core>=1.0.0"]
146
build-backend = "poetry.core.masonry.api"
0 commit comments