diff options
| author | Natalia <124304+nessita@users.noreply.github.com> | 2025-08-22 12:36:48 -0300 |
|---|---|---|
| committer | nessita <124304+nessita@users.noreply.github.com> | 2025-08-25 10:51:10 -0300 |
| commit | 4286a23df64f6ce3b9b6ed097f4d1aac7d9e0de4 (patch) | |
| tree | e7225d1586c174b5945f595b3759b7c6dddbdae1 /docs/topics/testing | |
| parent | 01a460f23e470555a733b8980401402b7947bb9f (diff) | |
Refs #36485 -- Removed double spaces after periods in sentences.
Diffstat (limited to 'docs/topics/testing')
| -rw-r--r-- | docs/topics/testing/advanced.txt | 2 | ||||
| -rw-r--r-- | docs/topics/testing/overview.txt | 2 | ||||
| -rw-r--r-- | docs/topics/testing/tools.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/testing/advanced.txt b/docs/topics/testing/advanced.txt index b6146253c1..fcc9c782c7 100644 --- a/docs/topics/testing/advanced.txt +++ b/docs/topics/testing/advanced.txt @@ -560,7 +560,7 @@ and tear down the test suite. ``debug_mode`` specifies what the :setting:`DEBUG` setting should be set to prior to running tests. - ``parallel`` specifies the number of processes. If ``parallel`` is greater + ``parallel`` specifies the number of processes. If ``parallel`` is greater than ``1``, the test suite will run in ``parallel`` processes. If there are fewer test case classes than configured processes, Django will reduce the number of processes accordingly. Each process gets its own database. This diff --git a/docs/topics/testing/overview.txt b/docs/topics/testing/overview.txt index ac4110943a..80e6663f6b 100644 --- a/docs/topics/testing/overview.txt +++ b/docs/topics/testing/overview.txt @@ -84,7 +84,7 @@ your project's ``manage.py`` utility: $ ./manage.py test Test discovery is based on the unittest module's :py:ref:`built-in test -discovery <unittest-test-discovery>`. By default, this will discover tests in +discovery <unittest-test-discovery>`. By default, this will discover tests in any file named ``test*.py`` under the current working directory. You can specify particular tests to run by supplying any number of "test diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt index 7574695b21..7943b3dcac 100644 --- a/docs/topics/testing/tools.txt +++ b/docs/topics/testing/tools.txt @@ -2057,7 +2057,7 @@ Django, such as your machine's mail server, if you're running one.) During test running, each outgoing email is saved in ``django.core.mail.outbox``. This is a list of all -:class:`~django.core.mail.EmailMessage` instances that have been sent. The +:class:`~django.core.mail.EmailMessage` instances that have been sent. The ``outbox`` attribute is a special attribute that is created *only* when the ``locmem`` email backend is used. It doesn't normally exist as part of the :mod:`django.core.mail` module and you can't import it directly. The code below |
