X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=jjb%2Fintegration%2Finclude-raw-integration-install-robotframework.sh;h=778a70e9119b25e6f32863041f5fe692a3b6af1c;hb=5a6ea423022e8d3e663097d510513dde2a56b7e9;hp=9692cdc3316faf1502f67b2c0b5fecd40feee740;hpb=91605a11bebf4b3892a4d7a6e28adca6e01f63fc;p=releng%2Fbuilder.git diff --git a/jjb/integration/include-raw-integration-install-robotframework.sh b/jjb/integration/include-raw-integration-install-robotframework.sh index 9692cdc331..778a70e911 100644 --- a/jjb/integration/include-raw-integration-install-robotframework.sh +++ b/jjb/integration/include-raw-integration-install-robotframework.sh @@ -10,9 +10,20 @@ # http://www.eclipse.org/legal/epl-v10.html ############################################################################## -virtualenv $WORKSPACE/venv-robotframework -source $WORKSPACE/venv-robotframework/bin/activate -pip install -q docker-py importlib requests scapy -pip install -q robotframework{,-{httplibrary,requests,sshlibrary}} +ROBOT_VENV=`mktemp -d --suffix=robot_venv` +echo ROBOT_VENV=${ROBOT_VENV} >> ${WORKSPACE}/env.properties + +virtualenv ${ROBOT_VENV} +source ${ROBOT_VENV}/bin/activate +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 jsonpath-rw + +# print installed versions +pip freeze # vim: sw=4 ts=4 sts=4 et ft=sh :