From abd61de13390075638ba89c22a0ac93d774b8259 Mon Sep 17 00:00:00 2001 From: Sergey Lukjanov Date: Mon, 10 Aug 2015 18:54:37 +0300 Subject: [PATCH] Prevent breaking doc build in future See revert https://review.openstack.org/#/c/211239/1 for info. Change-Id: Ibfc783c8093f8ba12beac08fdb31bb442189243f --- jenkins/scripts/run-docs.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/jenkins/scripts/run-docs.sh b/jenkins/scripts/run-docs.sh index 7f833770bb..a6ae55f233 100755 --- a/jenkins/scripts/run-docs.sh +++ b/jenkins/scripts/run-docs.sh @@ -11,6 +11,10 @@ venv=venv mkdir -p doc/build export HUDSON_PUBLISH_DOCS=1 +# The "python setup.py build_sphinx" is intentionally executed instead of +# "tox -edocs", because it's the standard python project build interface +# specified in OpenStack Project Testing Interface: +# http://governance.openstack.org/reference/project-testing-interface.html tox -e$venv -- python setup.py build_sphinx result=$?