2018-11-29 18:59:10 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2019-06-03 21:16:16 +00:00
|
|
|
set -eux
|
2018-11-29 18:59:10 +00:00
|
|
|
|
2019-06-03 21:16:16 +00:00
|
|
|
export ANSIBLE_ROLES_PATH=../
|
2018-11-29 18:59:10 +00:00
|
|
|
|
|
|
|
# Test graceful failure for older versions of botocore
|
2019-06-03 21:16:16 +00:00
|
|
|
source virtualenv.sh
|
|
|
|
pip install 'boto3<1.6.0'
|
2019-05-14 17:39:44 +00:00
|
|
|
ansible-playbook -i ../../inventory -e @../../integration_config.yml -v playbooks/version_fail.yml "$@"
|
2018-11-29 18:59:10 +00:00
|
|
|
|
|
|
|
# Run full test suite
|
2019-06-03 21:16:16 +00:00
|
|
|
source virtualenv.sh
|
|
|
|
pip install 'boto3>1.6.0'
|
2019-05-14 17:39:44 +00:00
|
|
|
ansible-playbook -i ../../inventory -e @../../integration_config.yml -v playbooks/full_test.yml "$@"
|