From b23399b4d53e770c5eb8adb8fe2ff447c9bf2d38 Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Fri, 24 Nov 2023 10:31:32 +0100 Subject: [PATCH] A bit less duplicated checks. --- tox.ini | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/tox.ini b/tox.ini index cd77208..0913f6b 100644 --- a/tox.ini +++ b/tox.ini @@ -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