summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2018-08-23 17:36:28 -0700
committerMatt Clay <matt@mystile.com>2018-11-05 14:49:13 -0800
commit380f45e7cab7951fb33b4c702fd13ec6aae64f37 (patch)
tree3ff98388ac1495fc0bcf292a5dc01f66628aa983
parentf21dfd85cdfb5923eefcddf849515a9f47f747a7 (diff)
downloadansible-380f45e7cab7951fb33b4c702fd13ec6aae64f37.tar.gz
Split sanity tests into 3 groups.
(cherry picked from commit 5461bfbf315d1ac24a50df8e643821b1062849bb)
-rw-r--r--shippable.yml1
-rwxr-xr-xtest/utils/shippable/sanity.sh3
2 files changed, 3 insertions, 1 deletions
diff --git a/shippable.yml b/shippable.yml
index d27e5b0c32..5fba58c690 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 e17cea4843..a4c393ad85 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