@@ -134,30 +134,17 @@ dependencies = ["coverage[toml]", "pytest-cov"]
134
134
test = " python -m pytest -vv --cov notebook --cov-branch --cov-report term-missing:skip-covered {args}"
135
135
nowarn = " test -W default {args}"
136
136
137
- [tool .hatch .envs .typing ]
138
- features = [" test" ]
139
- dependencies = [" mypy>=1.5.1" ]
140
- [tool .hatch .envs .typing .scripts ]
141
- test = " mypy --install-types --non-interactive {args}"
142
-
143
137
[tool .hatch .envs .lint ]
144
- dependencies = [
145
- " mdformat>0.7" ,
146
- " mdformat-gfm>=0.3.5" ,
147
- " ruff==0.1.3"
148
- ]
149
138
detached = true
139
+ dependencies = [" pre-commit" ]
150
140
[tool .hatch .envs .lint .scripts ]
151
- style = [
152
- " ruff {args:.}" ,
153
- " ruff format {args:.}" ,
154
- " mdformat --check {args:CHANGELOG.md}"
155
- ]
156
- fmt = [
157
- " ruff --fix {args:.}" ,
158
- " ruff format {args:.}" ,
159
- " mdformat {args:CHANGELOG.md}"
160
- ]
141
+ build = " pre-commit run --all-files ruff"
142
+
143
+ [tool .hatch .envs .typing ]
144
+ dependencies = [ " pre-commit" ]
145
+ detached = true
146
+ [tool .hatch .envs .typing .scripts ]
147
+ test = " pre-commit run --all-files --hook-stage manual mypy"
161
148
162
149
[tool .hatch .build .hooks .jupyter-builder ]
163
150
dependencies = [" hatch-jupyter-builder>=0.5" ]
@@ -203,7 +190,7 @@ minversion = "6.0"
203
190
xfail_strict = true
204
191
log_cli_level = " info"
205
192
addopts = [
206
- " -raXs " , " --durations=10" , " --color=yes" , " --doctest-modules" ,
193
+ " -ra " , " --durations=10" , " --color=yes" , " --doctest-modules" ,
207
194
" --showlocals" , " --strict-markers" , " --strict-config"
208
195
]
209
196
testpaths = [
@@ -285,4 +272,4 @@ fail-under=100
285
272
exclude = [" tests" , " ui-tests" , " docs" , " node_modules" , " setup.py" ]
286
273
287
274
[tool .repo-review ]
288
- ignore = [" PY007" , " PP308 " , " GH102" , " PC140 " , " PC180" ]
275
+ ignore = [" PY007" , " GH102" , " PC180" ]
0 commit comments