Files
zulip/tools/test-backend
Tim Abbott a095666770 test-backend: Don't pass --skip-generate to testing system by default.
It doesn't save much time (maybe 0.5s out of 12+s).

I'm leaving the option in because I think it is still useful for
iteratively testing a single test case.

(imported from commit a0ac43f4c48eec101f05d731740394b30a15773b)
2013-04-02 16:27:12 -04:00

14 lines
192 B
Bash
Executable File

#!/bin/bash -e
target='zephyr'
case "$1" in
zephyr*)
target="$1"
shift
;;
esac
cd "$(dirname "$0")"/..
./manage.py test "$target" --settings=humbug.test_settings "$@"