summaryrefslogtreecommitdiff
path: root/test/utils
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2020-06-08 10:50:56 -0700
committerMatt Clay <matt@mystile.com>2020-06-16 11:25:39 -0700
commit0faec623549892a13b834f2ca76e34e41ae582b0 (patch)
treeda57bc45262850de6170696a3dcb5d489d1c35bd /test/utils
parent5f30f4e5243aa7b1bdf8357a8df147c4db84edfa (diff)
downloadansible-0faec623549892a13b834f2ca76e34e41ae582b0.tar.gz
Remove temporary migration hack from CI scripts.
Diffstat (limited to 'test/utils')
-rwxr-xr-xtest/utils/shippable/sanity.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/utils/shippable/sanity.sh b/test/utils/shippable/sanity.sh
index ea766116fc..d58924b4aa 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}" \