summaryrefslogtreecommitdiff
path: root/test/utils/shippable/other.sh
blob: 3ca5b6a53ca21c2732551c71d1ec50e8ccd7a6d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash -eux

set -o pipefail

retry.py apt-get update -qq
retry.py apt-get install -qq \
    shellcheck \

retry.py pip install tox --disable-pip-version-check

echo '{"verified": false, "results": []}' > test/results/bot/ansible-test-failure.json

ansible-test compile --failure-ok --color -v --junit --requirements --coverage
ansible-test sanity  --failure-ok --color -v --junit --tox --skip-test ansible-doc --python 3.5 --coverage
ansible-test sanity  --failure-ok --color -v --junit --tox --test ansible-doc --coverage

rm test/results/bot/ansible-test-failure.json

if find test/results/bot/ -mindepth 1 -name '.*' -prune -o -print -quit | grep -q .; then
    echo "One or more of the above ansible-test commands recorded at least one test failure."
    exit 1
fi