a8d829d9c3
* Add timeout support to ansible-test. * Fix ansible-test tar filename filter bug. * Update timeouts used on Shippable. * Kill subprocesses when parent process terminates. * Require explicit use of env --show option.
19 lines
383 B
Bash
Executable file
19 lines
383 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -o pipefail -eux
|
|
|
|
declare -a args
|
|
IFS='/:' read -ra args <<< "$1"
|
|
|
|
version="${args[1]}"
|
|
|
|
if [[ "${COVERAGE:-}" ]]; then
|
|
timeout=90
|
|
else
|
|
timeout=10
|
|
fi
|
|
|
|
ansible-test env --timeout "${timeout}" --color -v
|
|
|
|
# shellcheck disable=SC2086
|
|
ansible-test units --color -v --docker default --python "${version}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} \
|