summaryrefslogtreecommitdiff
path: root/test/utils/shippable/sanity.sh
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2018-10-15 09:36:44 -0700
committerMatt Clay <matt@mystile.com>2018-10-15 12:03:43 -0700
commitb887333029e6a6f1e3e8d7577711297812e97ebc (patch)
treed7f60871fdeaa0ce5245e9c92a4d2e33ae98fb4a /test/utils/shippable/sanity.sh
parent871dd77f2b36588ff08f5e0448cc06c17f1fb7a9 (diff)
downloadansible-b887333029e6a6f1e3e8d7577711297812e97ebc.tar.gz
Use 4 nodes for sanity tests in CI.
Diffstat (limited to 'test/utils/shippable/sanity.sh')
-rwxr-xr-xtest/utils/shippable/sanity.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/utils/shippable/sanity.sh b/test/utils/shippable/sanity.sh
index a4c393ad85..1b3ba53fff 100755
--- a/test/utils/shippable/sanity.sh
+++ b/test/utils/shippable/sanity.sh
@@ -17,8 +17,9 @@ fi
case "${group}" in
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) ;;
+ 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/) ;;
esac
# shellcheck disable=SC2086