File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ def typecheck(session: nox.Session) -> None:
178
178
session ,
179
179
"install" ,
180
180
"--group" ,
181
- "type-check " ,
181
+ "all " ,
182
182
)
183
183
184
184
session .run (
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ all-optional = ["keyring"]
98
98
nox = [" nox" ] # noxfile.py
99
99
update-rtd-redirects = [" httpx" , " rich" , " PyYAML" ] # tools/update-rtd-redirects.py
100
100
101
- type-check = [
101
+ type-checking = [
102
102
# Actual type checker:
103
103
" mypy" ,
104
104
@@ -109,13 +109,15 @@ type-check = [
109
109
" types-setuptools" , # test dependency and used in distutils_hack
110
110
" types-six" , # via python-dateutil via freezegun (test dependency)
111
111
" types-PyYAML" , # update-rtd-redirects dependency
112
+ ]
112
113
113
- # Everything else that could contain type hints:
114
+ all = [
114
115
{include-group = " test" },
115
116
{include-group = " docs" },
116
117
{include-group = " nox" },
117
118
{include-group = " all-optional" },
118
119
{include-group = " update-rtd-redirects" },
120
+ {include-group = " type-checking" },
119
121
]
120
122
121
123
[tool .setuptools ]
You can’t perform that action at this time.
0 commit comments