cf1337ca9a
* Use correct pip version in ansible-test. * Add git fallback for validate-modules. * Run sanity tests in a docker container. * Use correct python version for sanity tests. * Pin docker completion images and add default. * Split pylint execution into multiple contexts. * Only test .py files in use-argspec-type-path test. * Accept identical python interpeter name or binary. * Switch cloud tests to default container. * Remove unused extras from pip install. * Filter out empty pip commands. * Don't force running of pip list. * Support delegation for windows and network tests. * Fix ansible-test python version usage. * Fix ansible-test python version skipping. * Use absolute path for log in ansible-test. * Run vyos_command test on python 3. * Fix windows/network instance persistence. * Add `test/cache` dir to classification. * Enable more python versions for network tests. * Fix cs_router test.
24 lines
774 B
Bash
Executable file
24 lines
774 B
Bash
Executable file
#!/bin/bash -eux
|
|
|
|
set -o pipefail
|
|
|
|
shippable.py
|
|
|
|
echo '{"verified": false, "results": []}' > test/results/bot/ansible-test-failure.json
|
|
|
|
if [ "${BASE_BRANCH:-}" ]; then
|
|
base_branch="origin/${BASE_BRANCH}"
|
|
else
|
|
base_branch=""
|
|
fi
|
|
# shellcheck disable=SC2086
|
|
ansible-test compile --failure-ok --color -v --junit --coverage ${CHANGED:+"$CHANGED"} --docker default
|
|
# shellcheck disable=SC2086
|
|
ansible-test sanity --failure-ok --color -v --junit --coverage ${CHANGED:+"$CHANGED"} --docker default --docker-keep-git --base-branch "${base_branch}"
|
|
|
|
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 tests reported at least one failure."
|
|
exit 1
|
|
fi
|