Fix publishing of api-guide

The api-guide needs to generate html in api-guide/build/html so that the
infra scripts can publish it. Fix tox.ini for this.

Change-Id: Ie47fb9788fe918a5a8aad7e5e8743fe890cbf0d7
This commit is contained in:
Andreas Jaeger 2016-03-21 20:39:03 +01:00
parent 2b10863514
commit c52ee37ce2

View File

@ -87,13 +87,13 @@ commands =
commands=
rm -rf api-guide/build
python setup.py build_sphinx
sphinx-build -W -b html api-guide/source api-guide/build
sphinx-build -W -b html api-guide/source api-guide/build/html
[testenv:api-guide]
# This environment is called from CI scripts to test and publish
# the API Guide to developer.openstack.org.
commands =
sphinx-build -W -b html -d api-guide/build/doctrees api-guide/source api-guide/build
sphinx-build -W -b html -d api-guide/build/doctrees api-guide/source api-guide/build/html
[testenv:functional]
# This tox env is purely to make local test development easier