Explicitly list neutron api extensions for tests

Recent changes to neutron and gate hooks can cause the api extension
list to not include "all" but a neutron specific list.  This means
lbaasv2 may not be included in api extension list.  This will cause
tempest to skip the neutron-lbaas tests.

This change explictly adds "all,lbaasv2" for the network extensions.

Change-Id: I8623e27265544d9606e9000c52c79cec05413fcc
This commit is contained in:
johnsom 2017-04-07 08:51:13 -07:00 committed by Michael Johnson
parent 39abfb7870
commit c9128153b4
2 changed files with 3 additions and 0 deletions

View File

@ -42,6 +42,8 @@ function _setup_octavia {
fi
}
# Make sure lbaasv2 is listed as enabled for tempest
load_conf_hook api_extensions
case "$testtype" in

View File

@ -0,0 +1 @@
NETWORK_API_EXTENSIONS="all,lbaasv2"