forked from graphql-python/graphql-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
57 lines (50 loc) · 1.07 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[tox]
envlist = py3{6,7,8,9,10}, black, flake8, mypy, docs, manifest
isolated_build = true
[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
3.10: py310
[testenv:black]
basepython = python3.9
deps = black==21.12b0
commands =
black src tests setup.py -t py39 --check
[testenv:flake8]
basepython = python3.9
deps = flake8>=4,<5
commands =
flake8 src tests setup.py
[testenv:mypy]
basepython = python3.9
deps =
mypy==0.910
pytest>=6.2,<7
commands =
mypy src tests
[testenv:docs]
basepython = python3.9
deps =
sphinx>=4.3,<5
sphinx_rtd_theme>=1,<2
commands =
sphinx-build -b html -nEW docs docs/_build/html
[testenv:manifest]
basepython = python3.9
deps = check-manifest>=0.46,<1
commands =
check-manifest -v
[testenv]
deps =
pytest>=6.2,<7
pytest-asyncio>=0.16,<1
pytest-benchmark>=3.4,<4
pytest-cov>=3,<4
pytest-describe>=2,<3
pytest-timeout>=2,<3
py36,py37: typing-extensions>=3.10,<4
commands =
pytest tests {posargs: --cov-report=term-missing --cov=graphql --cov=tests --cov-fail-under=100}