@@ -309,7 +309,7 @@ behavior. This class defines the ``run_tests()`` entry point, plus a
309
309
selection of other methods that are used to by ``run_tests()`` to set up,
310
310
execute and tear down the test suite.
311
311
312
- .. class:: DiscoverRunner(pattern='test*.py', top_level=None, verbosity=1, interactive=True, failfast=True, **kwargs)
312
+ .. class:: DiscoverRunner(pattern='test*.py', top_level=None, verbosity=1, interactive=True, failfast=True, keepdb=False **kwargs)
313
313
314
314
``DiscoverRunner`` will search for tests in any file matching ``pattern``.
315
315
@@ -331,6 +331,10 @@ execute and tear down the test suite.
331
331
If ``failfast`` is ``True``, the test suite will stop running after the
332
332
first test failure is detected.
333
333
334
+ If ``keepdb`` is ``True``, the test suite will use the existing database,
335
+ or create one if necessary. If ``False``, a new database will be created,
336
+ prompting the user to remove the existing one, if present.
337
+
334
338
Django may, from time to time, extend the capabilities of the test runner
335
339
by adding new arguments. The ``**kwargs`` declaration allows for this
336
340
expansion. If you subclass ``DiscoverRunner`` or write your own test
@@ -347,6 +351,8 @@ execute and tear down the test suite.
347
351
subclassed test runner to add options to the list of command-line
348
352
options that the :djadmin:`test` command could use.
349
353
354
+ The ``keepdb`` argument was added.
355
+
350
356
Attributes
351
357
~~~~~~~~~~
352
358
0 commit comments