Remove duplicate flake8 call in tox, it's covered by pre-commit (#1448)

This commit is contained in:
Ülgen Sarıkavak 2022-08-27 19:13:48 +03:00 committed by GitHub
parent cbf59a88ad
commit 355601bd5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

10
tox.ini
View File

@ -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]