zulip/tools/test-all

34 lines
835 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
set -e
cd "$(dirname "$0")"/..
function run {
echo '----'
echo "Running $@"
if ! "$@"; then
printf "\n\e[31;1mFAILED\e[0m $@\n"
exit 1
else
echo
fi
}
run ./tools/clean-repo
run ./tools/test-tools
run ./tools/lint-all --pep8
run ./tools/test-migrations
run ./tools/test-js-with-node
run ./tools/run-mypy
run ./tools/test-backend
run ./tools/test-js-with-casper
# Not running management test since it takes 40s and thus is too slow to be worth it.
# run ./tools/test-management
# Not running queue worker reload tests since it's low-churn code
# run ./tools/test-queue-worker-reload
# Not running documentation tests since it takes 20s and only tests documentation
# run ./tools/test-documentation
run ./tools/test-help-documentation.py
printf '\n\e[32mAll OK!\e[0m\n'