aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/runtests.py
diff options
context:
space:
mode:
authorDavid Cramer2011-06-14 12:38:55 -0700
committerDavid Cramer2011-06-14 12:38:55 -0700
commit4ee67a1632f41a873d997ae15ac0a2eccca04430 (patch)
tree8ee7b6fca627ae86356aa9f22002f2ada069c52b /debug_toolbar/runtests.py
parentc61daab0ce10d9654ecb9ce70819233171885eae (diff)
downloaddjango-debug-toolbar-4ee67a1632f41a873d997ae15ac0a2eccca04430.tar.bz2
Move test suite into parent namespace
Diffstat (limited to 'debug_toolbar/runtests.py')
-rw-r--r--debug_toolbar/runtests.py47
1 files changed, 0 insertions, 47 deletions
diff --git a/debug_toolbar/runtests.py b/debug_toolbar/runtests.py
deleted file mode 100644
index f16882a..0000000
--- a/debug_toolbar/runtests.py
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/usr/bin/env python
-import sys
-from os.path import dirname, abspath
-
-from django.conf import settings
-
-if not settings.configured:
- settings.configure(
- DATABASE_ENGINE='sqlite3',
- # HACK: this fixes our threaded runserver remote tests
- # DATABASE_NAME='test_sentry',
- # TEST_DATABASE_NAME='test_sentry',
- INSTALLED_APPS=[
- 'django.contrib.auth',
- 'django.contrib.admin',
- 'django.contrib.contenttypes',
- 'django.contrib.sessions',
- 'django.contrib.sites',
-
- 'debug_toolbar',
-
- 'debug_toolbar.tests',
- ],
- ROOT_URLCONF='',
- DEBUG=False,
- SITE_ID=1,
- )
- import djcelery
- djcelery.setup_loader()
-
-from django.test.simple import run_tests
-
-def runtests(*test_args):
- if 'south' in settings.INSTALLED_APPS:
- from south.management.commands import patch_for_test_db_setup
- patch_for_test_db_setup()
-
- if not test_args:
- test_args = ['debug_toolbar']
- parent = dirname(abspath(__file__))
- sys.path.insert(0, parent)
- failures = run_tests(test_args, verbosity=1, interactive=True)
- sys.exit(failures)
-
-
-if __name__ == '__main__':
- runtests(*sys.argv[1:]) \ No newline at end of file