diff --git a/slave-scripts/tempest.sh b/slave-scripts/tempest.sh index ba996403..55d3448f 100755 --- a/slave-scripts/tempest.sh +++ b/slave-scripts/tempest.sh @@ -79,6 +79,7 @@ if [ "$TEMPESTPLUGIN_TESTS" == "0" ]; then else TOXENV="all-plugin" fi +export OS_TEST_TIMEOUT=1800 tox -e $TOXENV --notest .tox/$TOXENV/bin/pip install $SAHARACLIENT_PATH/. # Temporary use additional log file, due to wrong status code from tox scenario tests @@ -87,4 +88,5 @@ tox -e $TOXENV -- tempest.scenario.data_processing.client_tests | tee tox.log STATUS=$(grep "\ -\ Failed" tox.log | awk '{print $3}') if [ "$STATUS" != "0" ]; then failure "Tempest tests have failed"; fi .tox/$TOXENV/bin/pip freeze > $WORKSPACE/logs/python-tempest-env.txt +unset OS_TEST_TIMEOUT print_python_env