forked from hynek/environ-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
76 lines (65 loc) · 1.8 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
[pytest]
addopts = -ra
testpaths = tests
xfail_strict = true
filterwarnings =
always::Warning
always::DeprecationWarning
# Keep docs in sync with docs env and .readthedocs.yml.
[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39, manifest
3.10: py310, docs, lint
[tox]
envlist = lint,py37,py38-oldestAttrs,py38,py39,py310,manifest,docs,pypi-description,coverage-report
isolated_build = true
[testenv:lint]
description = Run all pre-commit hooks.
basepython = python3.10
skip_install = true
deps = pre-commit
passenv = HOMEPATH # needed on Windows
commands = pre-commit run --all-files
[testenv]
description = Run tests.
extras = tests
deps = oldestAttrs: attrs==17.4
commands = python -m pytest {posargs}
[testenv:py310]
description = Run tests and measure coverage.
extras = tests
commands = coverage run --parallel -m pytest {posargs}
[testenv:docs]
description = Build docs and run doctests.
# Keep basepython in sync with gh-actions and .readthedocs.yml.
basepython = python3.10
extras = docs
commands =
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]
description = Ensure MANIFEST.in is up to date.
deps = check-manifest
skip_install = true
commands = check-manifest
[testenv:pypi-description]
description = Ensure README.rst renders on PyPI.
basepython = python3.10
skip_install = true
deps =
twine
pip >= 18.0.0
commands =
pip wheel -w {envtmpdir}/build --no-deps .
twine check {envtmpdir}/build/*
[testenv:coverage-report]
description = Report coverage over all measured test runs.
basepython = python3.10
deps = coverage[toml]
skip_install = true
commands =
coverage combine
coverage report --fail-under=100