Merge "Add an option to enable the nova v3 api tests"

This commit is contained in:
Jenkins
2014-06-17 15:45:12 +00:00
committed by Gerrit Code Review
2 changed files with 6 additions and 0 deletions

View File

@@ -189,6 +189,9 @@ export DEVSTACK_GATE_KEYSTONE_V3=${DEVSTACK_GATE_KEYSTONE_V3:-0}
# Set to 1 to configure Keystone to run under mod_wsgi and HTTPD
export DEVSTACK_GATE_USE_APACHE=${DEVSTACK_GATE_USE_APACHE:-0}
# Set to 1 to enable the Nova v3 API tests
export DEVSTACK_GATE_TEMPEST_NOVA_API_v3=${DEVSTACK_GATE_TEMPEST_NOVA_API_v3:-0}
# Set the number of threads to run tempest with
DEFAULT_CONCURRENCY=$(nproc)
if [ ${DEFAULT_CONCURRENCY} -gt 3 ] ; then

View File

@@ -226,6 +226,9 @@ EOF
# check.
echo "APACHE_ENABLED_SERVICES+=key" >> localrc
fi
if [ "$DEVSTACK_GATE_TEMPEST_NOVA_V3" -eq "1" ]; then
echo "TEMPEST_NOVA_API_V3=True" >> localrc
fi
}
if [ "$DEVSTACK_GATE_GRENADE" -eq "1" ]; then