Fix missing option in the test settings.py file
The settings.py file in the test directory for openstack_dashboard is missing the profile_support option in the OPENSTACK_NEUTRON_NETWORK setting. This needs to be updated so that the tests for the "router" dashboard and cisco N1K will be run correctly. This fix merely ensures the OPENSTACK_NEUTRON_NETWORK setting is similar in both the settings files. Closes bug: #1278547 Change-Id: I51190cbe8f40bc6bf16dd246627de909456bd3a2
This commit is contained in:

committed by
Abishek Subramanian

parent
0c4cf9aacf
commit
50bf65094d
@@ -115,7 +115,15 @@ OPENSTACK_NEUTRON_NETWORK = {
|
||||
'enable_lb': True,
|
||||
'enable_firewall': True,
|
||||
'enable_quotas': False, # Enabled in specific tests only
|
||||
'enable_vpn': True
|
||||
'enable_vpn': True,
|
||||
# If the profile_support config is turned on in local_settings
|
||||
# the "router" dashboard will be enabled which can be used to
|
||||
# create and use profiles with networks and instances. In which case
|
||||
# using run_tests will require the registration of the "router" dashboard.
|
||||
# TODO (absubram): Need to make this permanent when a better solution
|
||||
# for run_tests is implemented to use with and without the n1k sub-plugin.
|
||||
'profile_support': None,
|
||||
#'profile_support': 'cisco'
|
||||
}
|
||||
|
||||
OPENSTACK_HYPERVISOR_FEATURES = {
|
||||
|
Reference in New Issue
Block a user