
And remove the build-sphinx part of the python module setup as there are no docs to build. This is to make this project (which has no project documenation, but does have a deploy-guide) compatible with the other deploy-guides. Depends-On: I96d8e3d958081667df5e69e148e13c6b27c34767 Change-Id: If775b98b4a58cc956e487a6d566d62999eaaf12d
18 lines
405 B
INI
18 lines
405 B
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = deploy-guide
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
basepython = python2.7
|
|
usedevelop = True
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
install_command = pip install -U {opts} {packages}
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:deploy-guide]
|
|
commands = sphinx-build -a -d deploy-guide/build/doctrees -b html deploy-guide/source deploy-guide/build/html
|