From 6d48bdb26aa3c691b013b8e9bd53abaf552eb477 Mon Sep 17 00:00:00 2001 From: Jamo Luhrsen Date: Wed, 17 Jan 2018 22:28:43 -0800 Subject: [PATCH] Pin novaclient to v9.0.0 this overcomes the following error, which happens with the newly released v10.0.0 launchpad bug here for novaclient to track it: https://bugs.launchpad.net/python-novaclient/+bug/1743964 Change-Id: I78428e30600656b6175ee985e45ad21da28805c6 Signed-off-by: Jamo Luhrsen --- jjb/integration/integration-install-robotframework.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/jjb/integration/integration-install-robotframework.sh b/jjb/integration/integration-install-robotframework.sh index 81c367d2c..d43f2d32b 100644 --- a/jjb/integration/integration-install-robotframework.sh +++ b/jjb/integration/integration-install-robotframework.sh @@ -59,10 +59,14 @@ pip install --upgrade jsonpatch # 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 +# Module pyhon-novaclient is installed as a dependency of openstackclient, but the +# latest version (v10.0.0) has some problem with "server add floating ip" that is +# not there with v9.0.0, so pinning it to that for now pip install python-openstackclient pip install networking-l2gw==11.0.0 pip install python-neutronclient==6.1.0 pip install networking-sfc +pip install --upgrade python-novaclient==9.0.0 # Print installed versions. pip install --upgrade pipdeptree -- 2.36.6