From e963ff82eaa6a06004757acc7260d05f5051f89b Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Fri, 18 Jul 2014 07:38:41 -0700 Subject: [PATCH] Show pip freeze output for all docs jobs With the 'pip freeze' block at the end of the script, it is not run if the earlier call to tox to run the doc build fails. Move it up to the top of the script and run it before the doc build instead. Change-Id: I7e14ef07599c11babe99f110786a7025d97b1e32 --- .../openstack_project/files/slave_scripts/run-docs.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/openstack_project/files/slave_scripts/run-docs.sh b/modules/openstack_project/files/slave_scripts/run-docs.sh index 5efa6bbbf3..69d0fa9d78 100755 --- a/modules/openstack_project/files/slave_scripts/run-docs.sh +++ b/modules/openstack_project/files/slave_scripts/run-docs.sh @@ -17,6 +17,11 @@ source /usr/local/jenkins/slave_scripts/select-mirror.sh $org $project venv=venv +echo "Begin pip freeze output from test virtualenv:" +echo "======================================================================" +tox -e$venv -- pip freeze +echo "======================================================================" + mkdir -p doc/build export HUDSON_PUBLISH_DOCS=1 tox -e$venv -- python setup.py build_sphinx @@ -76,9 +81,4 @@ else mv doc/build/tmp/* doc/build/html/$BRANCH fi -echo "Begin pip freeze output from test virtualenv:" -echo "======================================================================" -.tox/$venv/bin/pip freeze -echo "======================================================================" - exit $result