Remove jjb custom scripting
[releng/builder.git] / jjb / integration / include-raw-integration-install-robotframework.sh
index af5fd25e5cdb2c834d3fcdd1e53bc95f6e97ea53..59e870e24b96c07da39379b9d13f604be16ed202 100644 (file)
@@ -18,18 +18,20 @@ 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
+# Modules for longevity framework robot library
+pip install elasticsearch==1.7.0 elasticsearch-dsl==0.0.11
+pip install --upgrade matplotlib
 
-# print installed versions
+# Print installed versions.
 pip freeze
 
 # vim: sw=4 ts=4 sts=4 et ft=sh :