mirror of
https://github.com/django/django.git
synced 2025-07-24 05:36:15 +00:00
Fixed #27035 -- Eased changing settings.DEBUG for DiscoverRunner.
This commit is contained in:
parent
ac1975b18b
commit
a3a5ef4d0e
4 changed files with 20 additions and 4 deletions
|
@ -259,6 +259,10 @@ Tests
|
|||
* Added :meth:`.DiscoverRunner.get_test_runner_kwargs` to allow customizing the
|
||||
keyword arguments passed to the test runner.
|
||||
|
||||
* Added the ``debug_mode`` keyword argument to
|
||||
:class:`~django.test.runner.DiscoverRunner` to make it easier to customize
|
||||
the :setting:`DEBUG` setting when running tests.
|
||||
|
||||
URLs
|
||||
~~~~
|
||||
|
||||
|
|
|
@ -427,7 +427,7 @@ behavior. This class defines the ``run_tests()`` entry point, plus a
|
|||
selection of other methods that are used to by ``run_tests()`` to set up,
|
||||
execute and tear down the test suite.
|
||||
|
||||
.. class:: DiscoverRunner(pattern='test*.py', top_level=None, verbosity=1, interactive=True, failfast=False, keepdb=False, reverse=False, debug_sql=False, **kwargs)
|
||||
.. class:: DiscoverRunner(pattern='test*.py', top_level=None, verbosity=1, interactive=True, failfast=False, keepdb=False, reverse=False, debug_mode=False, debug_sql=False, **kwargs)
|
||||
|
||||
``DiscoverRunner`` will search for tests in any file matching ``pattern``.
|
||||
|
||||
|
@ -458,6 +458,9 @@ execute and tear down the test suite.
|
|||
and have side effects. :ref:`Grouping by test class <order-of-tests>` is
|
||||
preserved when using this option.
|
||||
|
||||
``debug_mode`` specifies what the :setting:`DEBUG` setting should be
|
||||
set to prior to running tests.
|
||||
|
||||
If ``debug_sql`` is ``True``, failing test cases will output SQL queries
|
||||
logged to the :ref:`django.db.backends logger <django-db-logger>` as well
|
||||
as the traceback. If ``verbosity`` is ``2``, then queries in all tests are
|
||||
|
@ -473,6 +476,10 @@ execute and tear down the test suite.
|
|||
custom arguments by calling ``parser.add_argument()`` inside the method, so
|
||||
that the :djadmin:`test` command will be able to use those arguments.
|
||||
|
||||
.. versionadded:: 1.11
|
||||
|
||||
The ``debug_mode`` keyword argument was added.
|
||||
|
||||
Attributes
|
||||
~~~~~~~~~~
|
||||
|
||||
|
@ -526,7 +533,7 @@ Methods
|
|||
|
||||
Sets up the test environment by calling
|
||||
:func:`~django.test.utils.setup_test_environment` and setting
|
||||
:setting:`DEBUG` to ``False``.
|
||||
:setting:`DEBUG` to ``self.debug_mode`` (defaults to ``False``).
|
||||
|
||||
.. method:: DiscoverRunner.build_suite(test_labels, extra_tests=None, **kwargs)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue