2019-02-18 22:41:45 +01:00
|
|
|
#!/usr/bin/env bash
|
2018-01-24 20:07:24 +01:00
|
|
|
|
2019-02-18 22:41:45 +01:00
|
|
|
set -o pipefail -eux
|
2018-01-24 20:07:24 +01:00
|
|
|
|
|
|
|
declare -a args
|
|
|
|
IFS='/:' read -ra args <<< "$1"
|
|
|
|
|
|
|
|
group="${args[1]}"
|
|
|
|
|
|
|
|
if [ "${BASE_BRANCH:-}" ]; then
|
|
|
|
base_branch="origin/${BASE_BRANCH}"
|
|
|
|
else
|
|
|
|
base_branch=""
|
|
|
|
fi
|
|
|
|
|
|
|
|
case "${group}" in
|
2019-08-29 07:32:28 +02:00
|
|
|
1) options=(--skip-test pylint --skip-test ansible-doc --skip-test docs-build --skip-test package-data --skip-test validate-modules) ;;
|
2019-08-20 22:26:17 +02:00
|
|
|
2) options=( --test ansible-doc --test docs-build --test package-data) ;;
|
2018-10-15 18:36:44 +02:00
|
|
|
3) options=(--test pylint --exclude test/units/ --exclude lib/ansible/module_utils/ --exclude lib/ansible/modules/network/) ;;
|
|
|
|
4) options=(--test pylint test/units/ lib/ansible/module_utils/ lib/ansible/modules/network/) ;;
|
2019-08-29 07:32:28 +02:00
|
|
|
5) options=( --test validate-modules) ;;
|
2018-01-24 20:07:24 +01:00
|
|
|
esac
|
|
|
|
|
|
|
|
# shellcheck disable=SC2086
|
|
|
|
ansible-test sanity --color -v --junit ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} \
|
|
|
|
--docker --docker-keep-git --base-branch "${base_branch}" \
|
2018-05-10 01:47:24 +02:00
|
|
|
"${options[@]}" --allow-disabled
|