Merge "Fix the collection of integration tests artifacts" into stable/newton

This commit is contained in:
Jenkins 2016-09-22 19:00:38 +00:00 committed by Gerrit Code Review
commit 65dae20bcd
1 changed files with 4 additions and 2 deletions

View File

@ -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