diff --git a/tools/gate/integration/post_test_hook.sh b/tools/gate/integration/post_test_hook.sh index 2a4414fa1c..eb3a2b1f5f 100755 --- a/tools/gate/integration/post_test_hook.sh +++ b/tools/gate/integration/post_test_hook.sh @@ -12,11 +12,13 @@ sudo apt-get -y purge firefox sudo dpkg -i firefox.deb sudo rm firefox.deb -cd /opt/stack/new/horizon +HORIZON_DIR=/opt/stack/new/horizon +pushd $HORIZON_DIR sudo -H -E -u stack tox -e py27integration retval=$? if [ -d openstack_dashboard/test/integration_tests/test_reports/ ]; then - cp -r openstack_dashboard/test/integration_tests/test_reports/ /home/jenkins/workspace/gate-horizon-dsvm-integration-$1/ + popd + cp -r $HORIZON_DIR/openstack_dashboard/test/integration_tests/test_reports/ ./ fi exit $retval