Author: russellm Date: 2010-10-12 02:53:37 -0500 (Tue, 12 Oct 2010) New Revision: 14186
Modified: django/trunk/docs/releases/1.3.txt Log: Refs #12991 -- Added release note about deprecation of DjangoTestRunner. Modified: django/trunk/docs/releases/1.3.txt =================================================================== --- django/trunk/docs/releases/1.3.txt 2010-10-12 07:27:49 UTC (rev 14185) +++ django/trunk/docs/releases/1.3.txt 2010-10-12 07:53:37 UTC (rev 14186) @@ -167,3 +167,13 @@ deprecated in favor of a new :attr:`~django.test.client.Response.templates` attribute, which is always a list, even if it has only a single element or no elements. + +``DjangoTestRunner`` +~~~~~~~~~~~~~~~~~~~~ + +As a result of the introduction of support for unittest2, the features +of :class:`django.test.simple.DjangoTestRunner` (including fail-fast +and Ctrl-C test termination) have been made redundant. In view of this +redundancy, :class:`~django.test.simple.DjangoTestRunner` has been +turned into an empty placeholder class, and will be removed entirely +in Django 1.5. -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.
