diff --git a/contrib/ci/post_test_hook.sh b/contrib/ci/post_test_hook.sh index 7c46fe50da..aa19abff41 100755 --- a/contrib/ci/post_test_hook.sh +++ b/contrib/ci/post_test_hook.sh @@ -94,6 +94,12 @@ export MANILA_TESTS=${MANILA_TESTS:-'tempest.api.share*'} if [[ "$JOB_NAME" =~ "scenario" ]]; then echo "Set test set to scenario only" MANILA_TESTS='tempest.scenario.*share*' +elif [[ "$JOB_NAME" =~ "no-share-servers" ]]; then + # Using approach without handling of share servers we have bigger load for + # volume creation in Cinder using Generic driver. So, reduce amount of + # threads to avoid errors for Cinder volume creations that appear + # because of lack of free space. + MANILA_TEMPEST_CONCURRENCY=8 fi echo "Running tempest manila test suites"