aboutsummaryrefslogtreecommitdiff
path: root/tagging/tests/runtests.py
diff options
context:
space:
mode:
authorSVN-Git Migration <python-modules-team@lists.alioth.debian.org>2015-10-08 11:51:45 -0700
committerSVN-Git Migration <python-modules-team@lists.alioth.debian.org>2015-10-08 11:51:45 -0700
commit2228968f3d51a3d686adb2839bf43e018432f941 (patch)
tree9e95992c4b09bbea50336e91a709a775a20fd1e5 /tagging/tests/runtests.py
downloadpython-django-tagging-2228968f3d51a3d686adb2839bf43e018432f941.tar
python-django-tagging-2228968f3d51a3d686adb2839bf43e018432f941.tar.gz
Imported Upstream version 0.1+svn102upstream/0.1+svn102
Diffstat (limited to 'tagging/tests/runtests.py')
-rw-r--r--tagging/tests/runtests.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tagging/tests/runtests.py b/tagging/tests/runtests.py
new file mode 100644
index 0000000..ab1d49c
--- /dev/null
+++ b/tagging/tests/runtests.py
@@ -0,0 +1,8 @@
+import os, sys
+os.environ['DJANGO_SETTINGS_MODULE'] = 'tagging.tests.settings'
+
+from django.test.simple import run_tests
+
+failures = run_tests(None, verbosity=9)
+if failures:
+ sys.exit(failures)