summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/testing/advanced.txt9
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/topics/testing/advanced.txt b/docs/topics/testing/advanced.txt
index 5b09bd33f3..72a8c7276c 100644
--- a/docs/topics/testing/advanced.txt
+++ b/docs/topics/testing/advanced.txt
@@ -612,11 +612,18 @@ Testing utilities
To assist in the creation of your own test runner, Django provides a number of
utility methods in the ``django.test.utils`` module.
-.. function:: setup_test_environment()
+.. function:: setup_test_environment(debug=None)
Performs global pre-test setup, such as installing instrumentation for the
template rendering system and setting up the dummy email outbox.
+ If ``debug`` isn't ``None``, the :setting:`DEBUG` setting is updated to its
+ value.
+
+ .. versionchanged:: 1.11
+
+ The ``debug`` argument was added.
+
.. function:: teardown_test_environment()
Performs global post-test teardown, such as removing instrumentation from