mirror of
https://github.com/zulip/zulip.git
synced 2025-11-08 07:52:19 +00:00
This now allows e.g.
./tools/test-backend zephyr.BugdownTest
or
./tools/test-backend zephyr.BugdownTest --verbosity=2
but unfortunately not
./tools/test-backend --verbosity=2 zephyr.BugdownTest
(imported from commit 95302db3efe45182d789c40c2a2899230a06b091)
14 lines
208 B
Bash
Executable File
14 lines
208 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
target='zephyr'
|
|
|
|
case "$1" in
|
|
zephyr*)
|
|
target="$1"
|
|
shift
|
|
;;
|
|
esac
|
|
|
|
cd "$(dirname "$0")"/..
|
|
./manage.py test "$target" --skip-generate --settings=humbug.test_settings "$@"
|