File tree 3 files changed +27
-7
lines changed
3 files changed +27
-7
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ disable_warnings =
17
17
[report]
18
18
show_missing = True
19
19
exclude_also =
20
- # jaraco/skeleton#97
21
- @overload
20
+ # Exclude common false positives per
21
+ # https://coverage.readthedocs.io/en/latest/excluding.html#advanced-exclusion
22
+ # Ref jaraco/skeleton#97 and jaraco/skeleton#135
23
+ class .*\bProtocol\):
22
24
if TYPE_CHECKING:
Original file line number Diff line number Diff line change @@ -36,11 +36,6 @@ Changelog = "https://setuptools.pypa.io/en/stable/history.html"
36
36
test = [
37
37
# upstream
38
38
" pytest >= 6, != 8.1.*" ,
39
- " pytest-checkdocs >= 2.4" ,
40
- " pytest-cov" ,
41
- " pytest-mypy" ,
42
- " pytest-enabler >= 2.2" ,
43
- " pytest-ruff >= 0.2.1; sys_platform != 'cygwin'" ,
44
39
45
40
# local
46
41
" virtualenv>=13.0.0" ,
@@ -81,6 +76,7 @@ test = [
81
76
# workaround for businho/pytest-ruff#28
82
77
' pytest-ruff < 0.4; platform_system == "Windows"' ,
83
78
]
79
+
84
80
doc = [
85
81
# upstream
86
82
" sphinx >= 3.5" ,
@@ -121,6 +117,24 @@ core = [
121
117
" platformdirs >= 2.6.2" ,
122
118
]
123
119
120
+ check = [
121
+ " pytest-checkdocs >= 2.4" ,
122
+ " pytest-ruff >= 0.2.1; sys_platform != 'cygwin'" ,
123
+ ]
124
+
125
+ cover = [
126
+ " pytest-cov" ,
127
+ ]
128
+
129
+ enabler = [
130
+ " pytest-enabler >= 2.2" ,
131
+ ]
132
+
133
+ type = [
134
+ " pytest-mypy" ,
135
+ ]
136
+
137
+
124
138
[project .entry-points ."distutils .commands" ]
125
139
alias = " setuptools.command.alias:alias"
126
140
bdist_egg = " setuptools.command.bdist_egg:bdist_egg"
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ commands =
10
10
usedevelop = True
11
11
extras =
12
12
test
13
+ check
14
+ cover
15
+ enabler
16
+ type
13
17
core
14
18
pass_env =
15
19
SETUPTOOLS_USE_DISTUTILS
You can’t perform that action at this time.
0 commit comments