-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
112 lines (87 loc) · 2.42 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[tox]
envlist = lint, py27, py35, py36, py37, py38, manifest, docs, pypi-description, changelog, coverage-report, codecov
isolated_build = True
[flake8]
# !PEP8: E203 whitespace before ':'
# !PEP8: W503 line break before binary operator
ignore = E203, W503
[pytest]
strict = true
addopts = -ra
testpaths = tests
filterwarnings =
once::Warning
[gh-actions]
python =
2.7: py27
3.5: py35
3.6: py36
3.7: lint, py37, manifest, docs, pypi-description, changelog, coverage-report, codecov
3.8: py38
[testenv]
# Prevent random setuptools/pip breakages like
# https://github.com/pypa/setuptools/issues/1042 from breaking our builds.
setenv =
VIRTUALENV_NO_DOWNLOAD=1
extras = tests
commands = coverage run --parallel -m pytest {posargs}
[testenv:py37]
# Python 3.6+ has a number of compile-time warnings on invalid string escapes.
# PYTHONWARNINGS=d and --no-compile below make them visible during the Tox run.
basepython = python3.7
install_command = pip install --no-compile {opts} {packages}
setenv =
PYTHONWARNINGS=d
[testenv:py38]
# Python 3.6+ has a number of compile-time warnings on invalid string escapes.
# PYTHONWARNINGS=d and --no-compile below make them visible during the Tox run.
basepython = python3.8
install_command = pip install --no-compile {opts} {packages}
setenv =
PYTHONWARNINGS=d
[testenv:coverage-report]
basepython = python3.7
skip_install = true
deps = coverage
commands =
coverage combine
coverage report
[testenv:codecov]
basepython = python3.7
skip_install = true
deps = codecov
passenv = CODECOV_TOKEN
commands = codecov
[testenv:lint]
basepython = python3.7
skip_install = true
deps = pre-commit
passenv = HOMEPATH # needed on Windows
commands = pre-commit run --all-files
[testenv:docs]
basepython = python3.7
extras = docs
commands =
sphinx-autogen docs/api.rst
sphinx-build -n -T -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
sphinx-build -n -T -W -b doctest -d {envtmpdir}/doctrees docs docs/_build/html
python -m doctest README.rst
[testenv:manifest]
basepython = python3.7
deps = check-manifest
skip_install = true
commands = check-manifest
[testenv:pypi-description]
basepython = python3.7
skip_install = true
deps =
twine
pip >= 18.0.0
platform = linux
commands =
pip wheel -w {envtmpdir}/build --no-deps .
twine check {envtmpdir}/build/*
[testenv:changelog]
basepython = python3.7
deps = towncrier
commands = towncrier --draft