Install all dev dependencies for flake8 and black tox envs

This commit is contained in:
Jonathan Kim 2019-06-19 16:58:06 +01:00
parent b1cebefb38
commit 2710a2a49b

View File

@ -28,12 +28,12 @@ commands = {posargs:py.test --cov=graphene_django graphene_django examples}
[testenv:black]
basepython = python3.7
deps = black
deps = -e.[dev]
commands =
black --exclude "/migrations/" graphene_django examples setup.py --check
[testenv:flake8]
basepython = python3.7
deps = flake8
deps = -e.[dev]
commands =
flake8 graphene_django examples