Files
zulip/tools/test-backend
Tim Abbott 602077f75b We're no longer using the review script.
(imported from commit 9840ebdfdacee6e3cb32934b81502c70c133e2b0)
2015-09-20 00:10:54 -07:00

16 lines
320 B
Bash
Executable File

#!/bin/bash -e
target='zerver'
case "$1" in
zerver*)
target="$1"
shift
;;
esac
cd "$(dirname "$0")"/..
./tools/generate-fixtures
# "-u" uses unbuffered IO, which is important when wrapping it in subprocess
/usr/bin/env python -u ./manage.py test "$target" --settings=zproject.test_settings "$@"