Add tools/test-backend script to run backend tests.

(imported from commit fde4c7deb1e64e8cca9d62cda905f13d90392961)
This commit is contained in:
Tim Abbott 2013-01-10 13:22:16 -05:00
parent 52589ca6fb
commit af88c10c5e
2 changed files with 5 additions and 1 deletions

View File

@ -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'

4
tools/test-backend Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash -e
cd "$(dirname "$0")"/..
./manage.py test zephyr --skip-generate --settings=humbug.test_settings