-
Notifications
You must be signed in to change notification settings - Fork 40
/
tox.ini
117 lines (108 loc) · 2.88 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
113
114
115
116
117
[tox]
envlist =
fix
py39
py38
py37
py36
py35
coverage
pkg_meta
isolated_build = true
skip_missing_interpreters = true
minversion = 3.14.0
[testenv]
description = run test suite under {basepython}
setenv =
COVERAGE_FILE = {env:COVERAGE_FILE:{toxworkdir}/.coverage.{envname}}
PIP_DISABLE_VERSION_CHECK = 1
PYTHONDONTWRITEBYTECODE = 1
VIRTUALENV_DOWNLOAD = 0
deps =
pytest-timeout
tox[testing]>=3.8.1,<4
commands =
pytest {posargs: \
--junitxml {toxworkdir}/junit.{envname}.xml --cov {envsitepackagesdir}/tox_conda --cov tests \
--cov-config=tox.ini --no-cov-on-fail --cov-report term-missing --cov-context=test \
--cov-report html:{envtmpdir}/htmlcov \
--cov-report xml:{toxworkdir}/coverage.{envname}.xml \
tests --timeout 180 --durations 5}
[testenv:fix]
description = format the code base to adhere to our styles, and complain about what we cannot do automatically
passenv =
HOMEPATH
PROGRAMDATA
skip_install = true
deps =
pre-commit>=2
virtualenv<20.0.34
extras =
lint
commands =
pre-commit run --all-files --show-diff-on-failure
python -c 'import pathlib; print("hint: run \{\} install to add checks as pre-commit hook".format(pathlib.Path(r"{envdir}") / "bin" / "pre-commit"))'
[testenv:coverage]
description = [run locally after tests]: combine coverage data and create report;
generates a diff coverage against origin/master (can be changed by setting DIFF_AGAINST env var)
passenv =
DIFF_AGAINST
setenv =
COVERAGE_FILE = {toxworkdir}/.coverage
skip_install = true
deps =
{[testenv]deps}
coverage>=5
diff_cover
parallel_show_output = true
commands =
coverage combine
coverage report -m
coverage xml -o {toxworkdir}/coverage.xml
coverage html -d {toxworkdir}/htmlcov
diff-cover --compare-branch {env:DIFF_AGAINST:origin/master} {toxworkdir}/coverage.xml
depends =
py39
py38
py37
py36
py35
[testenv:pkg_meta]
description = check that the long description is valid
basepython = python3.10
skip_install = true
deps =
build>=0.0.4
twine>=3
commands =
python -m build -o {envtmpdir} -s -w .
twine check {envtmpdir}/*
[testenv:dev]
description = dev environment with all deps at {envdir}
usedevelop = true
commands =
python -m pip list --format=columns
python -c "print(r'{envpython}')"
[flake8]
max-line-length = 99
ignore = E203
[coverage:run]
branch = true
parallel = true
[coverage:report]
skip_covered = True
show_missing = True
exclude_lines =
\#\s*pragma: no cover
^\s*raise AssertionError\b
^\s*raise NotImplementedError\b
^\s*return NotImplemented\b
^\s*raise$
^if __name__ == ['"]__main__['"]:$
[coverage:paths]
source = src/tox_conda
.tox*/*/lib/python*/site-packages/tox_conda
.tox*/pypy*/site-packages/tox_conda
.tox*\*\Lib\site-packages\tox_conda
*/src/tox_conda
*\src\tox_conda