Merge "Disable n-cpu service in Control Node"
[releng/builder.git] / jjb / integration / include-raw-integration-install-robotframework.sh
index 5239832e4facea49b817b61610c59a57dfdc2eed..ee55be698ed147788a4697af5b32383e83bbc165 100644 (file)
@@ -15,7 +15,19 @@ echo ROBOT_VENV=${ROBOT_VENV} >> ${WORKSPACE}/env.properties
 
 virtualenv ${ROBOT_VENV}
 source ${ROBOT_VENV}/bin/activate
-pip install -q docker-py importlib requests scapy netifaces netaddr ipaddr jsonpath
-pip install -q robotframework{,-{httplibrary,requests,sshlibrary}}
+
+set -exu
+
+# Make sure pip itself us up-to-date.
+pip install --upgrade pip
+
+pip install --upgrade docker-py importlib requests scapy netifaces netaddr ipaddr
+pip install --upgrade robotframework{,-{httplibrary,requests,sshlibrary,selenium2library}}
+
+# Module jsonpath is needed by current AAA idmlite suite.
+pip install --upgrade jsonpath-rw
+
+# Print installed versions.
+pip freeze
 
 # vim: sw=4 ts=4 sts=4 et ft=sh :