diff options
| author | Tim Graham <timograham@gmail.com> | 2015-10-06 13:25:14 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-10-06 13:25:14 -0400 |
| commit | cb15ceb5555de0799210a0ce37e744fd4f284b36 (patch) | |
| tree | 31634f52dd9c300c66f6984afec8f15a54ccbc26 /docs | |
| parent | e0837f2cb12de5e95e621d19b186b0da43bcdee2 (diff) | |
Fixed #25516 -- Documented that parallel test excution doesn't work with pdb.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/django-admin.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index ee9fd0cc83..00cf294fc1 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -1277,6 +1277,10 @@ correctly: This feature isn't available on Windows. It doesn't work with the Oracle database backend either. +If you want to use :mod:`pdb` while debugging tests, you must disable parallel +execution (``--parallel=1``). You'll see something like ``bdb.BdbQuit`` if you +don't. + .. warning:: When test parallelization is enabled and a test fails, Django may be |
