Reduce amount of tempest threads for no-share-servers jobs

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.

Change-Id: I738dd9837eb6f951899aef091a6aafe8a4a0945b
This commit is contained in:
Valeriy Ponomaryov 2015-06-16 17:41:03 +03:00
parent edacf1b6ca
commit 5830e58ab8
1 changed files with 6 additions and 0 deletions

View File

@ -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"