df4e83deda
* added 'task timeout' feature Co-authored-by: Abhijeet Kasurde <akasurde@redhat.com>
9 lines
174 B
Bash
Executable file
9 lines
174 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
# run type tests
|
|
ansible-playbook -i ../../inventory types.yml -v "$@"
|
|
|
|
# test timeout
|
|
ansible-playbook -i ../../inventory timeout.yml -v "$@"
|