summaryrefslogtreecommitdiffstats
path: root/ci/run_tests.sh
blob: 464ba633d7456ac5a1f7c01a8a7ce76663e87a49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env bash

set -e

# Setup Python runtime
sudo pip install virtualenv
virtualenv ./vpy
source ./vpy/bin/activate
pip install -chttps://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/pike -e ../

# $1 is the IP to the pod's build server
# $2 is the IP to the pod's control server

# This operation installs squid on the pod's build server
ansible-playbook -i ${1}, setup_proxy.yaml

# Get RC file from control server
filename=$(ssh -o StrictHostKeyChecking=no root@${2} find /var/lib/lxc/controller00_nova_api_placement_container-* -name openrc)
scp root@${2}:${filename} .

# Execute tests
python ../snaps/test_runner.py -e openrc -n public -ci -p ${1}:3128

# Cleanup virtual python runtime
rm -rf ./vpy