mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
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 "$@"
|