mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Run all other
tests on Shippable before failing.
This commit is contained in:
parent
48e82b4ca8
commit
9acf551674
1 changed files with 10 additions and 3 deletions
|
@ -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
|
retry.py pip install tox --disable-pip-version-check
|
||||||
|
|
||||||
ansible-test compile --color -v
|
errors=0
|
||||||
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
|
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
|
||||||
|
|
Loading…
Reference in a new issue