File tree 3 files changed +26
-21
lines changed
3 files changed +26
-21
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -22,6 +22,10 @@ URL renamings (#417):
22
22
- ` default_patterns ` -> ` patterns `
23
23
- ` MATCHERS ` -> ` RULES `
24
24
25
+ ### Packaging
26
+
27
+ - Migrate ` .coveragerc ` to ` pyproject.toml ` (#421 )
28
+
25
29
## libvcs 0.16.5 (2022-09-21)
26
30
27
31
### Bug fixes
Original file line number Diff line number Diff line change @@ -133,6 +133,28 @@ libvcs = "libvcs.pytest_plugin"
133
133
[tool .mypy ]
134
134
strict = true
135
135
136
+ [tool .coverage .run ]
137
+ branch = true
138
+ parallel = true
139
+ omit = [
140
+ " */_compat.py" ,
141
+ " docs/conf.py" ,
142
+ ]
143
+
144
+ [tool .coverage .report ]
145
+ show_missing = true
146
+ skip_covered = true
147
+ exclude_lines = [
148
+ " pragma: no cover" ,
149
+ " def __repr__" ,
150
+ " raise NotImplementedError" ,
151
+ " return NotImplemented" ,
152
+ " def parse_args" ,
153
+ " if TYPE_CHECKING:" ,
154
+ " if t.TYPE_CHECKING:" ,
155
+ " @overload( |$)" ,
156
+ ]
157
+
136
158
[build-system ]
137
159
requires = [" poetry_core>=1.0.0" ]
138
160
build-backend = " poetry.core.masonry.api"
You can’t perform that action at this time.
0 commit comments