91c374b71b7ae6eba786ecf4f83f90f242fea203
[releng/builder.git] / jjb / integration / include-raw-integration-install-robotframework.sh
1 #!/bin/bash
2
3 # @License EPL-1.0 <http://spdx.org/licenses/EPL-1.0>
4 ##############################################################################
5 # Copyright (c) 2015 The Linux Foundation and others.
6 #
7 # All rights reserved. This program and the accompanying materials
8 # are made available under the terms of the Eclipse Public License v1.0
9 # which accompanies this distribution, and is available at
10 # http://www.eclipse.org/legal/epl-v10.html
11 ##############################################################################
12
13 virtualenv $WORKSPACE/venv-robotframework
14 source $WORKSPACE/venv-robotframework/bin/activate
15 pip install -q docker-py importlib requests scapy netaddr
16 pip install -q robotframework{,-{httplibrary,requests,sshlibrary}}
17
18 # vim: sw=4 ts=4 sts=4 et ft=sh :