We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ed759b commit 7a9c087Copy full SHA for 7a9c087
tox.ini
@@ -25,14 +25,25 @@ addopts=
25
testpaths=docs src/sortedcontainers tests
26
27
[testenv:rufflint]
28
-commands=ruff {toxinidir}/src
+commands=ruff check {toxinidir}/src
29
deps=ruff
30
+skip_install=True
31
+
32
+[testenv:rufflintfix]
33
+commands=ruff check --fix {toxinidir}/src
34
+deps=ruff
35
36
37
[testenv:ruffformatcheck]
38
commands=ruff format --check {toxinidir}
39
40
skip_install=True
41
42
+[testenv:ruffformat]
43
+commands=ruff format {toxinidir}
44
45
46
47
[testenv:doc8]
48
commands=doc8 docs --ignore-path docs/_build
49
deps=doc8
0 commit comments