summaryrefslogtreecommitdiff
path: root/test/integration/targets/elb_target/runme.sh
blob: e379f24b7425901b9496bb0a574a984aae80d75c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash

set -eux

# Test graceful failure for older versions of botocore
source virtualenv.sh
pip install 'botocore<=1.7.1' boto3
ansible-playbook -i ../../inventory -v playbooks/version_fail.yml "$@"

# Run full test suite
source virtualenv.sh
pip install 'botocore>=1.8.0' boto3
ansible-playbook -i ../../inventory -v playbooks/full_test.yml "$@"