
Update repo to use current Sphinx and openstackdocstheme versions: * update requirements * update conf.py to correctly set variables * update tox.ini to use python3 Change-Id: I44d41c3d78dfddf325ef7c65a8e1c9a1ddf96094
16 lines
325 B
INI
16 lines
325 B
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = deploy-guide
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
basepython = python3
|
|
usedevelop = True
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:deploy-guide]
|
|
commands = sphinx-build -a -W -d deploy-guide/build/doctrees -b html deploy-guide/source deploy-guide/build/html
|