File tree Expand file tree Collapse file tree 3 files changed +26
-20
lines changed Expand file tree Collapse file tree 3 files changed +26
-20
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force
35
35
- 0.15.6 (#823 , pytest fixes, packaging improvements)
36
36
- 0.15.3 (#821 , pytest plugin improvements, root-level
37
37
conftest.py)
38
+ - Move ` .coveragerc ` -> ` pyproject.toml ` (#824 )
38
39
39
40
### Packaging
40
41
Original file line number Diff line number Diff line change @@ -119,9 +119,27 @@ lint = [
119
119
" types-docutils" ,
120
120
]
121
121
122
- [build-system ]
123
- requires = [" poetry_core>=1.0.0" ]
124
- build-backend = " poetry.core.masonry.api"
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
+ ]
125
143
126
144
[[tool .mypy .overrides ]]
127
145
module = [
@@ -134,3 +152,7 @@ module = [
134
152
" bpython" ,
135
153
]
136
154
ignore_missing_imports = true
155
+
156
+ [build-system ]
157
+ requires = [" poetry_core>=1.0.0" ]
158
+ build-backend = " poetry.core.masonry.api"
You can’t perform that action at this time.
0 commit comments