2015-09-24 12:11:50 +03:00
|
|
|
[tox]
|
2022-01-11 14:13:12 +03:00
|
|
|
envlist = py3{6,7,8,9,10}, flake8, mypy, pre-commit
|
2015-10-31 23:46:43 +03:00
|
|
|
skipsdist = true
|
2015-09-24 12:11:50 +03:00
|
|
|
|
|
|
|
[testenv]
|
2018-08-31 21:01:03 +03:00
|
|
|
deps =
|
2018-08-31 20:41:20 +03:00
|
|
|
.[test]
|
2015-10-11 03:50:41 +03:00
|
|
|
setenv =
|
2018-08-31 21:01:03 +03:00
|
|
|
PYTHONPATH = .:{envdir}
|
2018-08-31 20:41:20 +03:00
|
|
|
commands =
|
2022-01-11 14:13:12 +03:00
|
|
|
py{36,37,38,39,310}: pytest --cov=graphene graphene examples {posargs}
|
2015-10-31 23:46:43 +03:00
|
|
|
|
2018-05-22 20:56:58 +03:00
|
|
|
[testenv:pre-commit]
|
2022-01-11 14:13:12 +03:00
|
|
|
basepython = python3.9
|
2018-05-22 20:56:58 +03:00
|
|
|
deps =
|
2022-01-11 14:13:12 +03:00
|
|
|
pre-commit>=2.16,<3
|
2018-05-22 20:56:58 +03:00
|
|
|
setenv =
|
|
|
|
LC_CTYPE=en_US.UTF-8
|
|
|
|
commands =
|
2021-08-21 19:07:30 +03:00
|
|
|
pre-commit run --all-files --show-diff-on-failure
|
2018-05-22 20:56:58 +03:00
|
|
|
|
2018-06-11 19:12:27 +03:00
|
|
|
[testenv:mypy]
|
2022-01-11 14:13:12 +03:00
|
|
|
basepython = python3.9
|
2018-06-11 19:12:27 +03:00
|
|
|
deps =
|
2022-05-06 23:31:31 +03:00
|
|
|
mypy>=0.950,<1
|
2018-06-11 19:12:27 +03:00
|
|
|
commands =
|
|
|
|
mypy graphene
|
|
|
|
|
2015-10-31 23:46:43 +03:00
|
|
|
[testenv:flake8]
|
2022-01-11 14:13:12 +03:00
|
|
|
basepython = python3.9
|
2019-08-18 00:07:53 +03:00
|
|
|
deps =
|
2022-01-11 14:13:12 +03:00
|
|
|
flake8>=4,<5
|
2015-10-31 23:46:43 +03:00
|
|
|
commands =
|
2019-08-18 00:07:53 +03:00
|
|
|
pip install --pre -e .
|
2015-10-31 23:46:43 +03:00
|
|
|
flake8 graphene
|
2015-09-30 09:40:40 +03:00
|
|
|
|
|
|
|
[pytest]
|