A bit less duplicated checks.

This commit is contained in:
Julien Palard 2023-11-24 10:31:32 +01:00
parent 69862f69af
commit b23399b4d5
Signed by: mdk
GPG Key ID: 0EFC1AC1006886F8
1 changed files with 1 additions and 16 deletions

17
tox.ini
View File

@ -1,8 +1,5 @@
[flake8]
max-line-length = 88
[tox]
envlist = py3{7,8,9,10,11,12,13}, flake8, mypy, black, pylint, pydocstyle, isort, ruff, bandit
envlist = py3{7,8,9,10,11,12,13}, mypy, black, pylint, pydocstyle, isort, bandit
isolated_build = True
skip_missing_interpreters = True
@ -11,13 +8,6 @@ deps =
pytest
commands = pytest
[testenv:flake8]
deps =
flake8
flake8-bugbear
skip_install = True
commands = flake8 --max-complexity=8 tests/ sequences
[testenv:black]
deps = black
skip_install = True
@ -42,11 +32,6 @@ deps = isort
skip_install = True
commands = isort --profile=black --check sequences
[testenv:ruff]
deps = ruff
skip_install = True
commands = ruff check sequences
[testenv:bandit]
deps = bandit
skip_install = True