c356ac4c6f
Outdated tox settings were causing doc builds to fail. This updates the minimum version of tox and some of the requirements to more recent version to get past some incompatibilities. Change-Id: I8dcd06ac01c59fcacc17846e8e5f0cc08696ed16 Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
22 lines
332 B
INI
22 lines
332 B
INI
[tox]
|
|
minversion = 4.0
|
|
skipsdist = True
|
|
envlist = docs
|
|
|
|
[testenv]
|
|
basepython = python3
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
passenv =
|
|
*_proxy
|
|
*_PROXY
|
|
ZUUL_*
|
|
|
|
[testenv:docs]
|
|
setenv =
|
|
SPHINX_WARNINGS_TRANS=1
|
|
deps =
|
|
-r{toxinidir}/doc/requirements.txt
|
|
commands =
|
|
doc8 doc/source -e txt -e rst
|
|
docstheme-build-translated.sh
|