8 lines
212 B
Bash
Executable file
8 lines
212 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
# Run full test suite
|
|
source virtualenv.sh
|
|
pip install 'botocore>1.10.26' boto3
|
|
ansible-playbook -i ../../inventory -e @../../integration_config.yml -v playbooks/full_test.yml "$@"
|