From 2761fe8272f5c1ee42d4446bc6b5febf07aff769 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Mon, 15 Oct 2018 12:11:17 -0700 Subject: [PATCH] Revert "Use 4 nodes for sanity tests in CI." This reverts commit b887333029e6a6f1e3e8d7577711297812e97ebc. --- shippable.yml | 1 - test/utils/shippable/sanity.sh | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/shippable.yml b/shippable.yml index 09922cf350..18ad67f0fa 100644 --- a/shippable.yml +++ b/shippable.yml @@ -11,7 +11,6 @@ matrix: - env: T=sanity/1 - env: T=sanity/2 - env: T=sanity/3 - - env: T=sanity/4 - env: T=units/2.6 - env: T=units/2.7 diff --git a/test/utils/shippable/sanity.sh b/test/utils/shippable/sanity.sh index 1b3ba53fff..a4c393ad85 100755 --- a/test/utils/shippable/sanity.sh +++ b/test/utils/shippable/sanity.sh @@ -17,9 +17,8 @@ fi case "${group}" in 1) options=(--skip-test pylint --skip-test ansible-doc --skip-test docs-build) ;; - 2) options=(--test ansible-doc --test docs-build) ;; - 3) options=(--test pylint --exclude test/units/ --exclude lib/ansible/modules/network/) ;; - 4) options=(--test pylint test/units/ lib/ansible/modules/network/) ;; + 2) options=(--test pylint) ;; + 3) options=(--test ansible-doc --test docs-build) ;; esac # shellcheck disable=SC2086