From 9acf5516745d5e4d1d758d71cc8430b87cbd55cf Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Tue, 7 Mar 2017 19:09:17 -0800 Subject: [PATCH] Run all `other` tests on Shippable before failing. --- test/utils/shippable/other.sh | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/test/utils/shippable/other.sh b/test/utils/shippable/other.sh index a74a93900a9..35e6a961255 100755 --- a/test/utils/shippable/other.sh +++ b/test/utils/shippable/other.sh @@ -17,6 +17,13 @@ ln -sf x86_64-linux-gnu-gcc-4.9 /usr/bin/x86_64-linux-gnu-gcc retry.py pip install tox --disable-pip-version-check -ansible-test compile --color -v -ansible-test sanity --color -v --junit --tox --skip-test ansible-doc --python 2.7 -ansible-test sanity --color -v --junit --tox --test ansible-doc --coverage +errors=0 + +ansible-test compile --color -v || ((errors++)) +ansible-test sanity --color -v --junit --tox --skip-test ansible-doc --python 2.7 || ((errors++)) +ansible-test sanity --color -v --junit --tox --test ansible-doc --coverage || ((errors++)) + +if [ ${errors} -gt 0 ]; then + echo "${errors} of the above ansible-test command(s) failed." + exit 1 +fi