Author: adrian Date: 2006-04-23 16:59:49 -0500 (Sun, 23 Apr 2006) New Revision: 2734
Modified: django/branches/magic-removal/tests/runtests.py Log: magic-removal: Changed unit tests to run with DEBUG = False Modified: django/branches/magic-removal/tests/runtests.py =================================================================== --- django/branches/magic-removal/tests/runtests.py 2006-04-23 21:49:07 UTC (rev 2733) +++ django/branches/magic-removal/tests/runtests.py 2006-04-23 21:59:49 UTC (rev 2734) @@ -76,6 +76,9 @@ # Manually set INSTALLED_APPS to point to the test models. settings.INSTALLED_APPS = [MODEL_TESTS_DIR_NAME + '.' + a for a in get_test_models()] + # Manually set DEBUG = False. + settings.DEBUG = False + from django.db import connection from django.core import management import django.db.models --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to django-updates@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-updates -~----------~----~----~----~------~----~------~--~---