Last change made all job runs end with success.

We need to save exit status in order to mark failed jobs.

Change-Id: Ia7c91a5197fb7a989385fcbf91d274ee6b0940a3
This commit is contained in:
Serhii Vasheka 2015-09-23 14:31:45 +03:00
parent 49cb7abfc2
commit c9fb525e34

View File

@ -37,11 +37,14 @@
export DEVSTACK_LOCAL_CONFIG="enable_plugin sahara git://git.openstack.org/openstack/sahara"
function post_test_hook {
local retval
cd /opt/stack/new/horizon
sudo -H -u stack tox -e py27integration
retval=$?
if [ -d openstack_dashboard/test/integration_tests/integration_tests_screenshots/ ]; then
cp -r openstack_dashboard/test/integration_tests/integration_tests_screenshots/ /home/jenkins/workspace/gate-horizon-dsvm-integration/
fi
return $retval
}
export -f post_test_hook
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh