mirror of
https://github.com/zulip/zulip.git
synced 2025-11-09 16:37:23 +00:00
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)
14 lines
192 B
Bash
Executable File
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 "$@"
|