From c3baf4668f655758b5251c048f740c5489104380 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Fri, 26 May 2006 21:28:12 +0000 Subject: [PATCH] Django's tests now include models from django.contrib; this will allow testing against those models. git-svn-id: http://code.djangoproject.com/svn/django/trunk@2996 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/runtests.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/tests/runtests.py b/tests/runtests.py index 32f893e1ea..f0eee97ec5 100755 --- a/tests/runtests.py +++ b/tests/runtests.py @@ -20,6 +20,17 @@ def log_error(model_name, title, description): MODEL_TEST_DIR = os.path.join(os.path.dirname(__file__), MODEL_TESTS_DIR_NAME) +ALWAYS_INSTALLED_APPS = [ + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.comments', + 'django.contrib.contenttypes', + 'django.contrib.flatpages', + 'django.contrib.redirects', + 'django.contrib.sessions', + 'django.contrib.sites', +] + def get_test_models(): return [f for f in os.listdir(MODEL_TEST_DIR) if not f.startswith('__init__') and not f.startswith('.')] @@ -78,7 +89,7 @@ class TestRunner: settings.INSTALLED_APPS # Manually set INSTALLED_APPS to point to the test models. - settings.INSTALLED_APPS = [MODEL_TESTS_DIR_NAME + '.' + a for a in get_test_models()] + settings.INSTALLED_APPS = ALWAYS_INSTALLED_APPS + [MODEL_TESTS_DIR_NAME + '.' + a for a in get_test_models()] # Manually set DEBUG = False. settings.DEBUG = False