1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/integration/targets/ec2_launch_template/runme.sh

15 lines
439 B
Bash
Executable file

#!/usr/bin/env bash
set -eux
export ANSIBLE_ROLES_PATH=../
# Test graceful failure for older versions of botocore
source virtualenv.sh
pip install 'boto3<1.6.0'
ansible-playbook -i ../../inventory -e @../../integration_config.yml -v playbooks/version_fail.yml "$@"
# Run full test suite
source virtualenv.sh
pip install 'boto3>1.6.0'
ansible-playbook -i ../../inventory -e @../../integration_config.yml -v playbooks/full_test.yml "$@"