We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 963ce0c commit edc44f8Copy full SHA for edc44f8
tox.ini
@@ -6,7 +6,7 @@ envlist =
6
py311
7
py312
8
mypy
9
- fmt-check
+ lint
10
skip_missing_interpreters = True
11
isolated_build = True
12
@@ -32,16 +32,16 @@ commands=
32
[testenv:fmt]
33
skip_install = true
34
deps =
35
- ruff==0.3.4
+ ruff~=0.3.4
36
commands =
37
ruff check --select I --fix .
38
ruff format .
39
40
-[testenv:fmt-check]
+[testenv:lint]
41
42
deps = {[testenv:fmt]deps}
43
44
- ruff check --select I .
+ ruff check --extend-select I .
45
ruff format --check .
46
47
[gh]
@@ -50,4 +50,4 @@ python =
50
3.9 = py39, mypy
51
3.10 = py310, mypy
52
3.11 = py311, mypy
53
- 3.12 = py312, mypy, fmt-check
+ 3.12 = py312, mypy, lint
0 commit comments