summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorovkulkarni <2019okulkarn@tjhsst.edu>2020-05-06 13:52:12 -0400
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-07-10 18:55:50 +0200
commitb7a438c7e21cdcb26d47f1c1fc5afdc1b3d1a9ef (patch)
treed3de3d982a9e9fae019e2cfe2e3a72a612860737 /docs/ref
parent188f7786bc434a3e5ca7b46d2975a08318fe7452 (diff)
Fixed #31509 -- Made DiscoverRunner enable faulthandler by default.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/django-admin.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
index b0913becf0..99cdafd2c8 100644
--- a/docs/ref/django-admin.txt
+++ b/docs/ref/django-admin.txt
@@ -1515,6 +1515,14 @@ installed, ``ipdb`` is used instead.
Discards output (``stdout`` and ``stderr``) for passing tests, in the same way
as :option:`unittest's --buffer option<unittest.-b>`.
+.. django-admin-option:: --no-faulthandler
+
+.. versionadded:: 3.2
+
+Django automatically calls :func:`faulthandler.enable()` when starting the
+tests, which allows it to print a traceback if the interpreter crashes. Pass
+``--no-faulthandler`` to disable this behavior.
+
``testserver``
--------------