summaryrefslogtreecommitdiffstats
path: root/ci/run_tests.sh
blob: 14f1a113da2e0f22ed2e75a2fd0804848b83a841 (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 -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