From af88c10c5e7771686057e139e7bd2873ee689ae5 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Thu, 10 Jan 2013 13:22:16 -0500 Subject: [PATCH] Add tools/test-backend script to run backend tests. (imported from commit fde4c7deb1e64e8cca9d62cda905f13d90392961) --- tools/test-all | 2 +- tools/test-backend | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100755 tools/test-backend diff --git a/tools/test-all b/tools/test-all index e282484cff..ad35cefc0d 100755 --- a/tools/test-all +++ b/tools/test-all @@ -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' diff --git a/tools/test-backend b/tools/test-backend new file mode 100755 index 0000000000..a61bf54ca1 --- /dev/null +++ b/tools/test-backend @@ -0,0 +1,4 @@ +#!/bin/bash -e + +cd "$(dirname "$0")"/.. +./manage.py test zephyr --skip-generate --settings=humbug.test_settings