mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
- Add script to compile documentation build and start crawler to check documentation. - Add documentation test script to backend travis test case. - Add log level argument to test-documentation script. Fixes #1492
33 lines
789 B
Bash
Executable File
33 lines
789 B
Bash
Executable File
#!/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
|
|
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
|
|
|
|
printf '\n\e[32mAll OK!\e[0m\n'
|