mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
28 lines
540 B
Bash
28 lines
540 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -o pipefail -eux
|
||
|
|
||
|
declare -a args
|
||
|
IFS='/:' read -ra args <<< "$1"
|
||
|
|
||
|
version="${args[1]}"
|
||
|
group="${args[2]}"
|
||
|
|
||
|
if [[ "${COVERAGE:-}" == "--coverage" ]]; then
|
||
|
timeout=90
|
||
|
else
|
||
|
timeout=30
|
||
|
fi
|
||
|
|
||
|
group1=()
|
||
|
|
||
|
case "${group}" in
|
||
|
1) options=("${group1[@]:+${group1[@]}}") ;;
|
||
|
esac
|
||
|
|
||
|
ansible-test env --timeout "${timeout}" --color -v
|
||
|
|
||
|
# shellcheck disable=SC2086
|
||
|
ansible-test units --color -v --docker default --python "${version}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} \
|
||
|
"${options[@]:+${options[@]}}" \
|