e5094e8071
* Move var_blending test inventory into test. * Remove Amazon specific inventory entry for tests. * Remove Azure specific inventory entry for tests. * Move var_precedence test inventory into test. * Move unicode test inventory into test. * Remove unused inventory entry. * Move gathering_facts test inventory into test. * Move delegate_to test inventory into test. * Clean up inventory for binary_modules test. * Clean up integration test inventory.
16 lines
536 B
Bash
Executable file
16 lines
536 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
ANSIBLE_SSH_ARGS='-C -o ControlMaster=auto -o ControlPersist=60s -o UserKnownHostsFile=/dev/null' \
|
|
ANSIBLE_HOST_KEY_CHECKING=false ansible-playbook test_delegate_to.yml -i inventory -v "$@"
|
|
|
|
ansible-playbook test_loop_control.yml -v "$@"
|
|
|
|
ansible-playbook test_delegate_to_loop_randomness.yml -v "$@"
|
|
|
|
ansible-playbook delegate_and_nolog.yml -i inventory -v "$@"
|
|
|
|
ansible-playbook delegate_facts_block.yml -i inventory -v "$@"
|
|
|
|
ansible-playbook test_delegate_to_loop_caching.yml -i inventory -v "$@"
|