mirror of https://github.com/zulip/zulip.git
Add tools/test-backend script to run backend tests.
(imported from commit fde4c7deb1e64e8cca9d62cda905f13d90392961)
This commit is contained in:
parent
52589ca6fb
commit
af88c10c5e
|
@ -17,6 +17,6 @@ function run {
|
|||
|
||||
run 'lint checkers' ./tools/check-all
|
||||
run 'web client tests' ./zephyr/tests/frontend/run
|
||||
run 'server tests' ./manage.py test zephyr --skip-generate
|
||||
run 'server tests' ./tools/test-backend
|
||||
|
||||
printf '\n\e[32mAll OK!\e[0m\n'
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
cd "$(dirname "$0")"/..
|
||||
./manage.py test zephyr --skip-generate --settings=humbug.test_settings
|
Loading…
Reference in New Issue