e3591223a0
* Update incidental test aliases. * Rewrite target references for renamed targets. * Add incidental tests to CI. * Update sanity tests for incidental cloud tests. * Initial copy of incidental tests. * Copy contrib files into test. * Update paths in test. * Add support plugins. * Update plugin to work around missing deps. * Update sanity ignores. * Fix matrix entries. * Remove debug echo.
12 lines
311 B
Bash
Executable file
12 lines
311 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Beware: most of our tests here are run in parallel.
|
|
# To add new tests you'll need to add a new host to the inventory and a matching
|
|
# '{{ inventory_hostname }}'.yml file in roles/ec2_instance/tasks/
|
|
|
|
|
|
set -eux
|
|
|
|
export ANSIBLE_ROLES_PATH=../
|
|
|
|
ansible-playbook main.yml -i inventory "$@"
|