1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Documented that the parallel test runner doesn't work on Windows.

This commit is contained in:
Aymeric Augustin
2015-09-10 15:41:26 +02:00
parent 710b4a7032
commit a32206b365
3 changed files with 10 additions and 5 deletions

View File

@@ -135,9 +135,10 @@ Each process gets its own database. You must ensure that different test cases
don't access the same resources. For instance, test cases that touch the
filesystem should create a temporary directory for their own use.
This option is enabled by default for Django's own test suite on database
backends that support it (this is all the built-in backends except for
Oracle).
This option is enabled by default for Django's own test suite provided:
- the OS supports it (all but Windows)
- the database backend supports it (all the built-in backends but Oracle)
Minor features
~~~~~~~~~~~~~~