File tree 3 files changed +26
-55
lines changed
3 files changed +26
-55
lines changed Original file line number Diff line number Diff line change @@ -109,3 +109,28 @@ docs = [
109
109
[tool .pdm .scripts ]
110
110
build = " python scripts/build.py"
111
111
docs = " mkdocs serve"
112
+
113
+ [tool .coverage .report ]
114
+ exclude_lines = [
115
+ " pragma: no cover" ,
116
+ " def __repr__" ,
117
+ " if self.debug" ,
118
+ " raise AssertionError" ,
119
+ " raise NotImplementedError" ,
120
+ " if __name__ == .__main__.:" ,
121
+ " if TYPE_CHECKING:" ,
122
+ ]
123
+ ignore_errors = true
124
+
125
+ [tool .mypy ]
126
+ ignore_missing_imports = true
127
+ disallow_incomplete_defs = true
128
+ disallow_untyped_calls = true
129
+ disallow_untyped_defs = true
130
+ disallow_untyped_decorators = true
131
+ explicit_package_bases = true
132
+ namespace_packages = true
133
+
134
+ [[tool .mypy .overrides ]]
135
+ module = " pdm.backend._vendor.*"
136
+ ignore_errors = true
Original file line number Diff line number Diff line change 1
- 3.8
1
+ 3.10
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments