summaryrefslogtreecommitdiff
path: root/docs/internals
diff options
context:
space:
mode:
authorCarl Meyer <carl@oddbird.net>2013-05-10 23:08:45 -0400
committerCarl Meyer <carl@oddbird.net>2013-05-10 23:08:45 -0400
commit9012833af857e081b515ce760685b157638efcef (patch)
tree467982b071026047cab406e4eaae9cb1a2d2f77d /docs/internals
parentc0d8932a6d03e9326a4e407e944b09bf43cf929c (diff)
Fixed #17365, #17366, #18727 -- Switched to discovery test runner.
Thanks to Preston Timmons for the bulk of the work on the patch, especially updating Django's own test suite to comply with the requirements of the new runner. Thanks also to Jannis Leidel and Mahdi Yusuf for earlier work on the patch and the discovery runner. Refs #11077, #17032, and #18670.
Diffstat (limited to 'docs/internals')
-rw-r--r--docs/internals/deprecation.txt11
1 files changed, 10 insertions, 1 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index 1533e25dc8..862907b2a8 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -73,7 +73,7 @@ these changes.
``django.utils.formats.get_format()`` to get the appropriate
formats.
-* The ability to use a function-based test runners will be removed,
+* The ability to use a function-based test runner will be removed,
along with the ``django.test.simple.run_tests()`` test runner.
* The ``views.feed()`` view and ``feeds.Feed`` class in
@@ -375,6 +375,15 @@ these changes.
* ``django.forms.widgets.RadioInput`` will be removed in favor of
``django.forms.widgets.RadioChoiceInput``.
+* The module ``django.test.simple`` and the class
+ ``django.test.simple.DjangoTestSuiteRunner`` will be removed. Instead use
+ ``django.test.runner.DiscoverRunner``.
+
+* The module ``django.test._doctest`` and the classes
+ ``django.test.testcases.DocTestRunner`` and
+ ``django.test.testcases.OutputChecker`` will be removed. Instead use the
+ doctest module from the Python standard library.
+
2.0
---