CSIT: Upgrade pip and install jsonpath with proper pip options
[releng/builder.git] / jjb / integration / include-raw-integration-install-robotframework.sh
index 5239832e4facea49b817b61610c59a57dfdc2eed..78cae49c5a714d7711ddc4b11d11f54867f91dc0 100644 (file)
@@ -15,7 +15,11 @@ 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 --upgrade pip
+pip --version
+pip install -q docker-py importlib requests scapy netifaces netaddr ipaddr
 pip install -q robotframework{,-{httplibrary,requests,sshlibrary}}
+# jsonpath is needed by current AAA idmlite suite
+pip install -q --allow-external jsonpath --allow-unverified jsonpath jsonpath
 
 # vim: sw=4 ts=4 sts=4 et ft=sh :