From 0faec623549892a13b834f2ca76e34e41ae582b0 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Mon, 8 Jun 2020 10:50:56 -0700 Subject: [PATCH] Remove temporary migration hack from CI scripts. --- test/utils/shippable/sanity.sh | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/test/utils/shippable/sanity.sh b/test/utils/shippable/sanity.sh index ea766116fc0..d58924b4aaa 100755 --- a/test/utils/shippable/sanity.sh +++ b/test/utils/shippable/sanity.sh @@ -21,17 +21,6 @@ case "${group}" in 5) options=( --test validate-modules) ;; esac -# allow collection migration sanity tests for groups 3 and 4 to pass without updating this script during migration -network_path="lib/ansible/modules/network/" - -if [ -d "${network_path}" ]; then - if [ "${group}" -eq 3 ]; then - options+=(--exclude "${network_path}") - elif [ "${group}" -eq 4 ]; then - options+=("${network_path}") - fi -fi - # shellcheck disable=SC2086 ansible-test sanity --color -v --junit ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} \ --docker --docker-keep-git --base-branch "${base_branch}" \