forked from beeware/beeware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
65 lines (58 loc) · 1.64 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
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = package,docs
[testenv]
extras =
dev
commands =
pytest -vv
[testenv:towncrier-check]
package_env = none
skip_install = True
deps =
{[testenv:towncrier]deps}
commands =
python -m towncrier.check --compare-with origin/main
[testenv:towncrier]
package_env = none
skip_install = True
deps =
towncrier ~= 22.8
commands =
towncrier {posargs}
[docs]
build_dir = _build
# -W: make warnings into errors
# --keep-going: continue on errors
# -j: run with multiple processes
# -n: nitpick mode
sphinx_args = -W --keep-going -j auto -n
# -v: verbose logging
# -E: force rebuild of environment
# -T: print traceback on error
# -a: read/parse all files
# -d: use tox's temp dir for caching
sphinx_args_extra = {[docs]sphinx_args} -v -E -T -a -d {envtmpdir}/doctrees
[testenv:docs{,-lint,-all}]
change_dir = docs
extras =
docs
commands =
!lint-!all : python -m sphinx {[docs]sphinx_args} -b html . {[docs]build_dir}/html
lint : python -m sphinx {[docs]sphinx_args_extra} -b linkcheck . {[docs]build_dir}/links
lint : python -m sphinx {[docs]sphinx_args_extra} -b spelling . {[docs]build_dir}/spell
all : python -m sphinx {[docs]sphinx_args_extra} -b html . {[docs]build_dir}/html
[testenv:package]
package_env = none
skip_install = True
deps =
check_manifest
build
twine
commands =
check-manifest -v
python -m build --outdir dist/ .
python -m twine check dist/*