summaryrefslogtreecommitdiff
path: root/docs/ref/django-admin.txt
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2015-02-09 22:00:09 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2015-09-09 23:01:15 +0200
commit0586c061f0b857e2259bea48e21ebb69a7878d13 (patch)
treeda1c875bab6d084c56baf49583ca51ff056ce387 /docs/ref/django-admin.txt
parentcd9fcd4e8073490a52c9e79133ada4661cb7db38 (diff)
Cloned databases for running tests in parallel.
Diffstat (limited to 'docs/ref/django-admin.txt')
-rw-r--r--docs/ref/django-admin.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
index 939ea61731..3dd4cf3a6d 100644
--- a/docs/ref/django-admin.txt
+++ b/docs/ref/django-admin.txt
@@ -1270,6 +1270,10 @@ By default ``--parallel`` runs one process per core according to
either by providing it as the option's value, e.g. ``--parallel=4``, or by
setting the ``DJANGO_TEST_PROCESSES`` environment variable.
+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 requires the third-party ``tblib`` package to display tracebacks
correctly: