diff options
Diffstat (limited to 'test/utils/shippable/cloud.sh')
-rwxr-xr-x | test/utils/shippable/cloud.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/utils/shippable/cloud.sh b/test/utils/shippable/cloud.sh index cf80eb2fdb..6695d8a816 100755 --- a/test/utils/shippable/cloud.sh +++ b/test/utils/shippable/cloud.sh @@ -6,8 +6,8 @@ declare -a args IFS='/:' read -ra args <<< "${TEST}" image="ansible/ansible:${args[1]}" -target="posix/ci/cloud/" +target="posix/ci/cloud/group${args[2]}/" # shellcheck disable=SC2086 ansible-test integration --color -v --retry-on-error "${target}" --docker "${image}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} \ - --changed-all-target 'posix/ci/cloud/smoketest/' + --changed-all-target "${target}smoketest/" |