From 76160f66b08096ed196ca7fdc91dde81c3fe5015 Mon Sep 17 00:00:00 2001 From: Valeriy Ponomaryov Date: Wed, 13 Aug 2014 23:34:15 +0300 Subject: [PATCH] Decrease amount of threads for Tempest tests There are cases when Cinder volume quota is exceeded with high load in gate tests with generic driver, that uses Cinder. Until we have proper way to increase Cinder volume quota, amount of threads is decreased for better stability of gate tests. Change-Id: I2c74aee51aa6c1c3cb4fb4ccd9f28d5a05290b52 --- contrib/ci/post_test_hook.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/ci/post_test_hook.sh b/contrib/ci/post_test_hook.sh index dff9fb2942..9aa2a1ffa8 100755 --- a/contrib/ci/post_test_hook.sh +++ b/contrib/ci/post_test_hook.sh @@ -31,7 +31,7 @@ fi set +o errexit cd $BASE/new/tempest -export TEMPEST_CONCURRENCY=8 +export TEMPEST_CONCURRENCY=6 export MANILA_TESTS='tempest.cli.*manila*' if [[ ! "$ZUUL_PROJECT" =~ python-manilaclient ]]; then MANILA_TESTS+=' tempest.api.share*';