75427ad7f9
We want to allow for integration tests to test deprecated panels. This means that we need to override the configurations provided by the panels and force a 'legacy' setting. On the Infra side, we need to pass in an environment variable that tells this override to be enabled. Depends-On: I20232ef16ae60a7151e267b506af471ebfed2f7f Change-Id: If5a3e273098aa726e12f9076c0273a5afaf233d2 Partially-Implements: blueprint test-deprecated-features
23 lines
767 B
Bash
Executable File
23 lines
767 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This script will be executed inside post_test_hook function in devstack gate
|
|
|
|
set -x
|
|
|
|
# install avconv to capture video of failed tests
|
|
sudo apt-get install -y libav-tools && export AVCONV_INSTALLED=1
|
|
|
|
sudo wget -q -O firefox.deb https://sourceforge.net/projects/ubuntuzilla/files/mozilla/apt/pool/main/f/firefox-mozilla-build/firefox-mozilla-build_46.0.1-0ubuntu1_amd64.deb/download
|
|
sudo apt-get -y purge firefox
|
|
sudo dpkg -i firefox.deb
|
|
sudo rm firefox.deb
|
|
|
|
cd /opt/stack/new/horizon
|
|
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/
|
|
fi
|
|
exit $retval
|