ansible/test/utils/shippable/units.sh

20 lines
383 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -o pipefail -eux
declare -a args
IFS='/:' read -ra args <<< "$1"
2017-01-10 19:30:41 +01:00
version="${args[1]}"
2017-01-10 19:30:41 +01:00
if [[ "${COVERAGE:-}" ]]; then
timeout=90
else
timeout=10
fi
ansible-test env --timeout "${timeout}" --color -v
# shellcheck disable=SC2086
2018-01-23 19:00:55 +01:00
ansible-test units --color -v --docker default --python "${version}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} \