summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-neutron
diff options
context:
space:
mode:
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-neutron')
-rw-r--r--meta-openstack/recipes-devtools/python/python-neutron/neutron-test-nec-plugin-extensions-location.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-neutron/neutron-test-nec-plugin-extensions-location.patch b/meta-openstack/recipes-devtools/python/python-neutron/neutron-test-nec-plugin-extensions-location.patch
new file mode 100644
index 0000000..bf54c79
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-neutron/neutron-test-nec-plugin-extensions-location.patch
@@ -0,0 +1,24 @@
1neutron test: nec plugin extensions location
2
3Some of the neutron built-in testcases failed
4because they can not find nec plugin extensions
5based on the given the relative path.
6
7So forcing these failure testcases to look for
8these extensions using absolute path.
9
10Signed-off-by: Vu Tran <vu.tran@windriver.com>
11
12diff --git a/neutron/tests/unit/nec/test_nec_plugin.py b/neutron/tests/unit/nec/test_nec_plugin.py
13index 2f913ca..1c3f0ce 100644
14--- a/neutron/tests/unit/nec/test_nec_plugin.py
15+++ b/neutron/tests/unit/nec/test_nec_plugin.py
16@@ -37,7 +37,7 @@ OFC_MANAGER = 'neutron.plugins.nec.nec_plugin.ofc_manager.OFCManager'
17 NOTIFIER = 'neutron.plugins.nec.nec_plugin.NECPluginV2AgentNotifierApi'
18 NEC_PLUGIN_INI = """
19 [DEFAULT]
20-api_extensions_path = neutron/plugins/nec/extensions
21+api_extensions_path = %PYTHON_SITEPACKAGES_DIR%/neutron/plugins/nec/extensions
22 [OFC]
23 driver = neutron.tests.unit.nec.stub_ofc_driver.StubOFCDriver
24 enable_packet_filter = False