tox: remove isort
The role of the `isort` check is now performed by `ruff` instead of `isort`.
This commit is contained in:
parent
6536a45d0a
commit
82218c91a1
2 changed files with 2 additions and 9 deletions
2
Makefile
2
Makefile
|
|
@ -248,7 +248,7 @@ test-all:
|
|||
|
||||
.PHONY: lint
|
||||
lint:
|
||||
tox run-parallel -e ruff,pylint,autopep8,isort,mypy,mypy-strict
|
||||
tox run-parallel -e ruff,pylint,autopep8,mypy,mypy-strict
|
||||
|
||||
#
|
||||
# Building packages
|
||||
|
|
|
|||
9
tox.ini
9
tox.ini
|
|
@ -6,7 +6,7 @@ env_list =
|
|||
|
||||
labels =
|
||||
test = py{36,37,38,39,310,311}
|
||||
lint = ruff, isort, autopep8, pylint
|
||||
lint = ruff, autopep8, pylint
|
||||
type = mypy,mypy-strict
|
||||
|
||||
[testenv]
|
||||
|
|
@ -45,13 +45,6 @@ deps =
|
|||
commands =
|
||||
bash -c 'python -m ruff check {env:LINTABLES}'
|
||||
|
||||
[testenv:isort]
|
||||
deps =
|
||||
isort==5.12.0
|
||||
|
||||
commands =
|
||||
bash -c 'python -m isort --check --diff {env:LINTABLES}'
|
||||
|
||||
[testenv:autopep8]
|
||||
deps =
|
||||
autopep8==2.0.2
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue