Merge "fix the bug: congress server can't be started"
authorwenjuan dong <dong.wenjuan@zte.com.cn>
Tue, 8 Aug 2017 10:09:46 +0000 (10:09 +0000)
committerGerrit Code Review <gerrit@opnfv.org>
Tue, 8 Aug 2017 10:09:46 +0000 (10:09 +0000)
tests/run.sh

index 5c92226..abdad58 100755 (executable)
@@ -478,6 +478,13 @@ cleanup() {
     done
 }
 
+setup_python_packages() {
+    sudo pip install flask==0.10.1
+    command -v openstack || sudo pip install python-openstackclient==2.3.0
+    command -v ceilometer || sudo pip install python-ceilometerclient==2.6.2
+    command -v congress || sudo pip install python-congressclient==1.5.0
+}
+
 # Main process
 
 if [[ $PYTHON_ENABLE == [Tt]rue ]]; then
@@ -499,6 +506,8 @@ git log --oneline -1 || true   # ignore even you don't have git installed
 
 trap cleanup EXIT
 
+setup_python_packages
+
 source $TOP_DIR/functions-common
 source $TOP_DIR/lib/installer
 source $TOP_DIR/lib/inspector