Mistral tests will run from tempest plugin

Now mistral functional tests run from tempest
repository using plugin in devstack gate.

Change-Id: I67933fdc55b6f53dbd3e620f9814c0d919c85533
This commit is contained in:
hparekh 2016-01-29 13:54:13 +09:00 committed by hardik
parent 568bbf5384
commit ffb5861b15
1 changed files with 12 additions and 7 deletions

View File

@ -14,14 +14,19 @@
# This script is executed inside post_test_hook function in devstack gate.
sudo chmod -R a+rw /opt/stack/
(cd $BASE/new/tempest/; sudo virtualenv .venv)
source $BASE/new/tempest/.venv/bin/activate
RETVAL=0
(cd $BASE/new/tempest/; sudo pip install -r requirements.txt -r test-requirements.txt)
sudo pip install nose
sudo pip install numpy
sudo chmod -R a+rw /opt/stack/new/
cd /opt/stack/new/mistral
sudo cp $BASE/new/tempest/etc/logging.conf.sample $BASE/new/tempest/etc/logging.conf
echo "Running Mistral API tests"
./functionaltests/run_tests.sh
RETVAL=$?
(cd $BASE/new/mistral/; sudo pip install -r requirements.txt -r test-requirements.txt)
(cd $BASE/new/mistral/; sudo python setup.py install)
exit $RETVAL
export TOX_TESTENV_PASSENV=ZUUL_PROJECT
(cd $BASE/new/tempest/; sudo -E testr init)
(cd $BASE/new/tempest/; sudo -E tox -eall-plugin mistral)