Ignore error when installing jsonpath 59/32059/1
authorVratko Polak <vrpolak@cisco.com>
Mon, 4 Jan 2016 09:00:10 +0000 (10:00 +0100)
committerVratko Polak <vrpolak@cisco.com>
Mon, 4 Jan 2016 09:00:10 +0000 (10:00 +0100)
Currently, an attempt to install leads to:
No matching distribution found for jsonpath

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

index f0ea3b049dc348a211b1d90c8f2ab990161f34c1..435b5dbc4a16770fdc5b629e416027947ebcf14b 100644 (file)
@@ -19,7 +19,10 @@ 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,selenium2library}}
+
 # jsonpath is needed by current AAA idmlite suite
-pip install -q --allow-external jsonpath --allow-unverified jsonpath jsonpath
+pip install -q --allow-external jsonpath --allow-unverified jsonpath jsonpath || true
+# FIXME: jsonpath installation currently fails.
+# Rework the suite, or find a way to install correctly and remove " || true"
 
 # vim: sw=4 ts=4 sts=4 et ft=sh :