#!/bin/bash # @License EPL-1.0 ############################################################################## # Copyright (c) 2015 The Linux Foundation and others. # # All rights reserved. This program and the accompanying materials # are made available under the terms of the Eclipse Public License v1.0 # which accompanies this distribution, and is available at # http://www.eclipse.org/legal/epl-v10.html ############################################################################## 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 --allow-external jsonpath --allow-unverified jsonpath jsonpath # vim: sw=4 ts=4 sts=4 et ft=sh :