Fix tempest gate, add tempest import

Change-Id: Ib1010bf1a0af3eb4419e213a264ad4b20ce226c1
This commit is contained in:
Anastasia Kuznetsova
2015-02-10 18:37:44 +04:00
parent cab5ea0ead
commit 8a105d2637

View File

@@ -15,7 +15,7 @@
# How many seconds to wait for the API to be responding before giving up # How many seconds to wait for the API to be responding before giving up
API_RESPONDING_TIMEOUT=20 API_RESPONDING_TIMEOUT=20
if ! timeout ${API_RESPONDING_TIMEOUT} sh -c "while ! curl -s http://127.0.0.1:8989/v1/ 2>/dev/null | grep -q 'Authentication required' ; do sleep 1; done"; then if ! timeout ${API_RESPONDING_TIMEOUT} sh -c "while ! curl -s http://127.0.0.1:8989/v2/ 2>/dev/null | grep -q 'Authentication required' ; do sleep 1; done"; then
echo "Mistral API failed to respond within ${API_RESPONDING_TIMEOUT} seconds" echo "Mistral API failed to respond within ${API_RESPONDING_TIMEOUT} seconds"
exit 1 exit 1
fi fi
@@ -28,4 +28,7 @@ TEMPEST_DIR=${TEMPEST_DIR:-/opt/stack/new/tempest}
# Add tempest source tree to PYTHONPATH # Add tempest source tree to PYTHONPATH
export PYTHONPATH=$PYTHONPATH:$TEMPEST_DIR export PYTHONPATH=$PYTHONPATH:$TEMPEST_DIR
#installing requirements for tempest
pip install -r $TEMPEST_DIR/requirements.txt
nosetests -sv mistralclient/tests/functional/ nosetests -sv mistralclient/tests/functional/