1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Replaced "Django test runner" with DiscoverRunner in release notes.

Removed mention of options supported only by runtests.py.
This commit is contained in:
Tim Graham
2024-02-05 07:18:53 -05:00
committed by GitHub
parent 02a600ff67
commit d70b79c6b9
6 changed files with 13 additions and 21 deletions

View File

@@ -367,8 +367,7 @@ Tests
serialized to allow usage of the
:ref:`serialized_rollback <test-case-serialized-rollback>` feature.
* Django test runner now supports a :option:`--buffer <test --buffer>` option
with parallel tests.
* The :option:`test --buffer` option now supports parallel tests.
* The new ``logger`` argument to :class:`~django.test.runner.DiscoverRunner`
allows a Python :py:ref:`logger <logger>` to be used for logging.
@@ -376,8 +375,8 @@ Tests
* The new :meth:`.DiscoverRunner.log` method provides a way to log messages
that uses the ``DiscoverRunner.logger``, or prints to the console if not set.
* Django test runner now supports a :option:`--shuffle <test --shuffle>` option
to execute tests in a random order.
* :class:`~django.test.runner.DiscoverRunner` can now execute tests in a random
order using the :option:`test --shuffle` option.
* The :option:`test --parallel` option now supports the value ``auto`` to run
one test process for each processor core.