mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-10 19:56:45 +03:00
48678afba4
* actually run the tests in python 3.12 and 3.13 * remove snapshottest from the example tests so that the tests pass in 3.12 and 3.13 again * remove the section about snapshot testing from the testing docs because the snapshottest package doesn't work on Python 3.12 and above * fix assertion for badly formed JSON input on Python 3.13 * fix deprecation warning about datetime.utcfromtimestamp()
28 lines
483 B
INI
28 lines
483 B
INI
[tox]
|
|
envlist = py3{8,9,10,11,12,13}, mypy, pre-commit
|
|
skipsdist = true
|
|
|
|
[testenv]
|
|
deps =
|
|
.[test]
|
|
commands =
|
|
pytest --cov=graphene graphene --cov-report=term --cov-report=xml examples {posargs}
|
|
|
|
[testenv:pre-commit]
|
|
basepython = python3.10
|
|
deps =
|
|
pre-commit>=2.16,<3
|
|
setenv =
|
|
LC_CTYPE=en_US.UTF-8
|
|
commands =
|
|
pre-commit run --all-files --show-diff-on-failure
|
|
|
|
[testenv:mypy]
|
|
basepython = python3.10
|
|
deps =
|
|
mypy>=0.950,<1
|
|
commands =
|
|
mypy graphene
|
|
|
|
[pytest]
|