Files
zulip/tools/test-all
Steve Howell 29fd84fdbd Rename check-all to lint-all.
(imported from commit 844b2c69748f6d9df8ff1189c006ccf405f787c3)
2013-08-09 13:06:02 -04:00

23 lines
369 B
Bash
Executable File

#!/bin/bash -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/lint-all
run ./tools/test-js-with-node
run ./tools/test-backend
run ./tools/test-js-with-casper
printf '\n\e[32mAll OK!\e[0m\n'