graphene/tox.ini

28 lines
474 B
INI
Raw Normal View History

2015-09-24 12:11:50 +03:00
[tox]
2024-06-28 16:03:34 +03:00
envlist = py3{8,9,10,11,12,13}, mypy, pre-commit
skipsdist = true
2015-09-24 12:11:50 +03:00
[testenv]
2018-08-31 21:01:03 +03:00
deps =
.[test]
commands =
pytest --cov=graphene graphene --cov-report=term --cov-report=xml examples {posargs}
[testenv:pre-commit]
basepython = python3.10
deps =
2024-09-29 14:32:26 +03:00
pre-commit>=3.7,<4
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
[testenv:mypy]
basepython = python3.10
deps =
.[dev]
commands =
mypy graphene
2015-09-30 09:40:40 +03:00
[pytest]