From 355601bd5cce8c2ec2dacf128e6819af38a0c381 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Clgen=20Sar=C4=B1kavak?= Date: Sat, 27 Aug 2022 19:13:48 +0300 Subject: [PATCH] Remove duplicate flake8 call in tox, it's covered by pre-commit (#1448) --- tox.ini | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/tox.ini b/tox.ini index 07ddc767..d0be5a24 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py3{6,7,8,9,10}, flake8, mypy, pre-commit +envlist = py3{6,7,8,9,10}, mypy, pre-commit skipsdist = true [testenv] @@ -26,12 +26,4 @@ deps = commands = mypy graphene -[testenv:flake8] -basepython = python3.9 -deps = - flake8>=4,<5 -commands = - pip install --pre -e . - flake8 graphene - [pytest]