ansible/test/utils/shippable/units.sh

12 lines
261 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]}"
# shellcheck disable=SC2086
2018-01-23 19:00:55 +01:00
ansible-test units --color -v --docker default --python "${version}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} \