Remove duplicate flake8 call in tox, it's covered by pre-commit

This commit is contained in:
Ülgen Sarıkavak 2022-08-20 15:47:11 +03:00 committed by Erik Wrede
parent cbf59a88ad
commit ea94590b88

10
tox.ini
View File

@ -1,5 +1,5 @@
[tox] [tox]
envlist = py3{6,7,8,9,10}, flake8, mypy, pre-commit envlist = py3{6,7,8,9,10}, mypy, pre-commit
skipsdist = true skipsdist = true
[testenv] [testenv]
@ -26,12 +26,4 @@ deps =
commands = commands =
mypy graphene mypy graphene
[testenv:flake8]
basepython = python3.9
deps =
flake8>=4,<5
commands =
pip install --pre -e .
flake8 graphene
[pytest] [pytest]