VPN Imported data traffic is failed
[netvirt.git] / resources / robot / scripts / setup_robot_framework.sh
1 #ensure that CentOS5/EL5 repo is setup
2 cd /tmp
3 sudo wget -r --no-parent -A 'epel-release-*.rpm' http://dl.fedoraproject.org/pub/epel/7/x86_64/e/
4 sudo rpm -Uvh dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-*.rpm
5
6 #install git
7 sudo yum install -y git
8
9 # python is already installed.
10 # install python-pip and python-paramiko
11 sudo yum install -y python-pip
12 sudo yum install -y python-paramiko
13
14 #install the robot framework and required libraries
15 sudo pip install requests
16 sudo pip install robotframework
17 sudo pip install robotframework-sshlibrary
18 sudo pip install -U robotframework-requests
19 sudo pip install --upgrade robotframework-httplibrary
20
21 #copy the robot trigger code to user home
22 cp /vagrant/scripts/run_robot_tests.sh ~/