From c0b53b3dcc817aa6522b4477f009e7c3bb83ae2e Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Sat, 30 Aug 2008 05:09:03 +0000 Subject: Removed the need for ROOT_URLCONF in settings when running Django's core tests (via runtests.py). It was embarrassing having to explain the need for it to people, since we ignore whatever setting is passed in. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8731 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/runtests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/runtests.py b/tests/runtests.py index ee7b1a5cda..dc0f9df63c 100755 --- a/tests/runtests.py +++ b/tests/runtests.py @@ -90,7 +90,7 @@ def django_tests(verbosity, interactive, test_labels): old_installed_apps = settings.INSTALLED_APPS old_test_database_name = settings.TEST_DATABASE_NAME - old_root_urlconf = settings.ROOT_URLCONF + old_root_urlconf = getattr(settings, "ROOT_URLCONF", "") old_template_dirs = settings.TEMPLATE_DIRS old_use_i18n = settings.USE_I18N old_login_url = settings.LOGIN_URL -- cgit v1.3