Robot installation: Temporary fix of paramiko version
[releng/builder.git] / jjb / integration / include-raw-integration-install-robotframework.sh
index ccb01ed12f8a285abeda92742bf77e3d2a82c63d..af5fd25e5cdb2c834d3fcdd1e53bc95f6e97ea53 100644 (file)
@@ -15,7 +15,21 @@ echo ROBOT_VENV=${ROBOT_VENV} >> ${WORKSPACE}/env.properties
 
 virtualenv ${ROBOT_VENV}
 source ${ROBOT_VENV}/bin/activate
+
+set -exu
+
+pip install -q --upgrade pip
+
+# The most recent version of paramiko currently fails to install.
+pip install -q --upgrade paramiko==1.16.0
+
 pip install -q docker-py importlib requests scapy netifaces netaddr ipaddr
-pip install -q robotframework{,-{httplibrary,requests,sshlibrary}}
+pip install -q robotframework{,-{httplibrary,requests,sshlibrary,selenium2library}}
+
+# jsonpath is needed by current AAA idmlite suite
+pip install -q jsonpath-rw
+
+# print installed versions
+pip freeze
 
 # vim: sw=4 ts=4 sts=4 et ft=sh :