Changes to paramiko installation 33/39333/8
authorVratko Polak <vrpolak@cisco.com>
Tue, 21 Jun 2016 12:26:45 +0000 (14:26 +0200)
committerVratko Polak <vrpolak@cisco.com>
Tue, 21 Jun 2016 12:26:45 +0000 (14:26 +0200)
Forcing an older version of paramiko should not be needed anymore.
Also, installation of robotframework is not quiet anymore,
as it is useful to see version constrains the modules print on installation.
Every package install contains --upgrade to confirm we are using the latest version.
Comments improved.

Change-Id: I2fcb715dce29bd9b03e793f8fc0c478cc78a1520
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
jjb/integration/include-raw-integration-install-robotframework.sh

index af5fd25e5cdb2c834d3fcdd1e53bc95f6e97ea53..ee55be698ed147788a4697af5b32383e83bbc165 100644 (file)
@@ -18,18 +18,16 @@ source ${ROBOT_VENV}/bin/activate
 
 set -exu
 
-pip install -q --upgrade pip
+# Make sure pip itself us up-to-date.
+pip install --upgrade pip
 
-# The most recent version of paramiko currently fails to install.
-pip install -q --upgrade paramiko==1.16.0
+pip install --upgrade docker-py importlib requests scapy netifaces netaddr ipaddr
+pip install --upgrade robotframework{,-{httplibrary,requests,sshlibrary,selenium2library}}
 
-pip install -q docker-py importlib requests scapy netifaces netaddr ipaddr
-pip install -q robotframework{,-{httplibrary,requests,sshlibrary,selenium2library}}
+# Module jsonpath is needed by current AAA idmlite suite.
+pip install --upgrade jsonpath-rw
 
-# jsonpath is needed by current AAA idmlite suite
-pip install -q jsonpath-rw
-
-# print installed versions
+# Print installed versions.
 pip freeze
 
 # vim: sw=4 ts=4 sts=4 et ft=sh :