ansible/test/utils/shippable/units.sh

12 lines
253 B
Bash
Raw Normal View History

#!/bin/bash -eux
set -o pipefail
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
# shellcheck disable=SC2086
2018-01-23 19:00:55 +01:00
ansible-test units --color -v --docker default --python "${version}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} \