From 5461bfbf315d1ac24a50df8e643821b1062849bb Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Thu, 23 Aug 2018 17:36:28 -0700 Subject: [PATCH] Split sanity tests into 3 groups. --- shippable.yml | 1 + test/utils/shippable/sanity.sh | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 4e50833bfad..35109a9e5d9 100644 --- a/shippable.yml +++ b/shippable.yml @@ -10,6 +10,7 @@ matrix: include: - env: T=sanity/1 - env: T=sanity/2 + - env: T=sanity/3 - 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 e17cea48439..a4c393ad859 100755 --- a/test/utils/shippable/sanity.sh +++ b/test/utils/shippable/sanity.sh @@ -16,8 +16,9 @@ else fi case "${group}" in - 1) options=(--skip-test pylint) ;; + 1) options=(--skip-test pylint --skip-test ansible-doc --skip-test docs-build) ;; 2) options=(--test pylint) ;; + 3) options=(--test ansible-doc --test docs-build) ;; esac # shellcheck disable=SC2086