Browse code

Add ability to configure tempest tests based on network extensions

This patch introduces a Devstack variable to specify which network
extensions are enabled; this is useful for configuring tempest runs
when third-party plugins that do not support certain extensions.

Closes-bug: #1247778
Closes-bug: #1231152

Change-Id: Iee170993cb164502774f9ac4201b963d9a2715ba

armando-migliaccio authored on 2013/12/14 03:15:34
Showing 1 changed files
... ...
@@ -299,6 +299,9 @@ function configure_tempest() {
299 299
     # cli
300 300
     iniset $TEMPEST_CONF cli cli_dir $NOVA_BIN_DIR
301 301
 
302
+    # Networking
303
+    iniset $TEMPEST_CONF network-feature-enabled api_extensions "${NETWORK_API_EXTENSIONS:-all}"
304
+
302 305
     # service_available
303 306
     for service in nova cinder glance neutron swift heat horizon ceilometer; do
304 307
         if is_service_enabled $service ; then