From 2f1c1d038d43b6564a22758954756d3f530abb81 Mon Sep 17 00:00:00 2001 From: gvrangan Date: Wed, 19 Jul 2017 23:06:30 +0530 Subject: [PATCH] Fix L2GW jobs networking-l2gw is needed for using l2gateway commands. It works only with neutron clients older than 7. Change-Id: I222d6f624f588b2a73202f8e3cf64a69ad2023be Signed-off-by: gvrangan --- .../include-raw-integration-install-robotframework.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/jjb/integration/include-raw-integration-install-robotframework.sh b/jjb/integration/include-raw-integration-install-robotframework.sh index 4897254fb..9ee840aac 100644 --- a/jjb/integration/include-raw-integration-install-robotframework.sh +++ b/jjb/integration/include-raw-integration-install-robotframework.sh @@ -56,9 +56,13 @@ pip install --upgrade jmespath # Module for backup-restore support library pip install --upgrade jsonpatch -#Module OpenstackClient is needed for NEtvirt CSIT jobs +# Module OpenstackClient is needed for Netvirt CSIT jobs +# Module networking-l2gw is required for using l2gw commands with neutron client +# Module python-neutronclient is needed for certain tests run with Openstack Newton +# that does not work with Openstack Client pip install python-openstackclient -pip install python-neutronclient +pip install networking-l2gw +pip install python-neutronclient==6.1.0 # Print installed versions. pip freeze -- 2.36.6