2014-05-05 17:18:25 +04:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
# not use this file except in compliance with the License. You may obtain
|
|
|
|
# a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
|
|
|
|
# This script is executed inside post_test_hook function in devstack gate.
|
|
|
|
|
2016-08-25 07:08:43 +00:00
|
|
|
set -ex
|
|
|
|
|
2016-01-29 13:54:13 +09:00
|
|
|
sudo chmod -R a+rw /opt/stack/
|
|
|
|
(cd $BASE/new/tempest/; sudo virtualenv .venv)
|
|
|
|
source $BASE/new/tempest/.venv/bin/activate
|
2014-07-11 19:39:59 +04:00
|
|
|
|
2016-01-29 13:54:13 +09:00
|
|
|
(cd $BASE/new/tempest/; sudo pip install -r requirements.txt -r test-requirements.txt)
|
|
|
|
sudo pip install nose
|
|
|
|
sudo pip install numpy
|
2014-07-11 19:39:59 +04:00
|
|
|
|
2016-01-29 13:54:13 +09:00
|
|
|
sudo cp $BASE/new/tempest/etc/logging.conf.sample $BASE/new/tempest/etc/logging.conf
|
2014-07-22 17:55:17 +04:00
|
|
|
|
2016-01-29 13:54:13 +09:00
|
|
|
(cd $BASE/new/mistral/; sudo pip install -r requirements.txt -r test-requirements.txt)
|
|
|
|
(cd $BASE/new/mistral/; sudo python setup.py install)
|
2014-05-05 17:18:25 +04:00
|
|
|
|
2016-01-29 13:54:13 +09:00
|
|
|
export TOX_TESTENV_PASSENV=ZUUL_PROJECT
|
2017-12-10 15:25:48 +05:30
|
|
|
(cd $BASE/new/tempest/; sudo -E tox -evenv-tempest -- tempest run -r mistral)
|