graphene/tox.ini
Christoph Zwerschke 796880fc5c Update dependencies
2020-03-04 11:24:42 +01:00

38 lines
611 B
INI

[tox]
envlist = flake8,py36,py37,py38,pre-commit,mypy
skipsdist = true
[testenv]
deps =
.[test]
setenv =
PYTHONPATH = .:{envdir}
commands =
py{36,37}: pytest --cov=graphene graphene examples tests_asyncio {posargs}
[testenv:pre-commit]
basepython=python3.7
deps =
pre-commit>=2,<3
setenv =
LC_CTYPE=en_US.UTF-8
commands =
pre-commit {posargs:run --all-files}
[testenv:mypy]
basepython=python3.7
deps =
mypy>=0.761,<1
commands =
mypy graphene
[testenv:flake8]
basepython=python3.7
deps =
flake8>=3.7,<4
commands =
pip install --pre -e .
flake8 graphene
[pytest]