Remove unused tools/gate/integration/* files

These files are not needed anyomre since we migrated to
ansible-based job configuration.

Change-Id: I701cba4b3271aebc6a5b48ce209cec51c2a773a9
This commit is contained in:
Ivan Kolodyazhny 2020-03-10 21:13:36 +02:00
parent 1a85ffd97c
commit 14adb00bb0
3 changed files with 0 additions and 51 deletions

View File

@ -1,4 +0,0 @@
# This file contains various customized Devstack settings that Horizon uses at
# gate for integration tests job

View File

@ -1,24 +0,0 @@
#!/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
HORIZON_DIR=/opt/stack/new/horizon
pushd $HORIZON_DIR
sudo -H -E -u stack tox -e integration
retval=$?
if [ -d openstack_dashboard/test/integration_tests/test_reports/ ]; then
popd
cp -r $HORIZON_DIR/openstack_dashboard/test/integration_tests/test_reports/ ./
fi
exit $retval

View File

@ -1,23 +0,0 @@
#!/bin/bash
# This script will be executed inside pre_test_hook function in devstack gate
set -x
HORIZON_CODE_DIR=/opt/stack/new/horizon
cd ${HORIZON_CODE_DIR}/openstack_dashboard/local/local_settings.d
mv _20_integration_tests_scaffolds.py.example _20_integration_tests_scaffolds.py
if [ "$1" == "deprecated" ] ; then
mv _2010_integration_tests_deprecated.py.example _2010_integration_tests_deprecated.py
cat > ${HORIZON_CODE_DIR}/openstack_dashboard/test/integration_tests/local-horizon.conf <<EOF
[image]
panel_type=legacy
[flavors]
panel_type=legacy
EOF
fi