145307c84b
Some OpenStack CI jobs need the venv tox environment to run, add it. Change-Id: I8459f8fb71a2608302e4c40fc3eaff6a422ee6ff
19 lines
260 B
INI
19 lines
260 B
INI
[tox]
|
|
envlist = docs
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
basepython=python3
|
|
deps=
|
|
-rdoc/requirements.txt
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:docs]
|
|
whitelist_externals=
|
|
rm
|
|
commands=
|
|
rm -rf doc/build
|
|
sphinx-build -b html doc/source doc/build -a -E -W
|