22 lines
547 B
INI
22 lines
547 B
INI
|
[tox]
|
||
|
# Allows docs to be built without setup.py having to exist. Requires that
|
||
|
# usedevelop be False as well (which it is by default).
|
||
|
skipsdist = True
|
||
|
|
||
|
[testenv]
|
||
|
setenv = VIRTUAL_ENV={envdir}
|
||
|
LANGUAGE=en_US
|
||
|
LC_ALL=en_US.utf-8
|
||
|
passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
|
||
|
|
||
|
[testenv:venv]
|
||
|
commands = {posargs}
|
||
|
|
||
|
[testenv:docs]
|
||
|
basepython = python3
|
||
|
whitelist_externals = rm
|
||
|
deps = -r{toxinidir}/doc/requirements.txt
|
||
|
commands =
|
||
|
rm -rf doc/build
|
||
|
sphinx-build -W -b html doc/source doc/build/html
|