From 2fec0a1ae8515d49a771c1920bb2f98e6a734daf Mon Sep 17 00:00:00 2001 From: Timur Sufiev Date: Mon, 19 Sep 2016 19:19:05 +0300 Subject: [PATCH] Fix the collection of integration tests artifacts Don't rely on a particular workspace name, as it changes when job's name changes. Depends-On: I28d84235fb51a49492ed9c96794ba74f317f66b6 Change-Id: I63e45ee89711b429d0d878303aefeec4b159125a Closes-Bug: #1625253 --- tools/gate/integration/post_test_hook.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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