Changes between Initial Version and Version 1 of Ticket #36083, comment 3
- Timestamp:
- Jan 11, 2025, 12:25:26 PM (5 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36083, comment 3
initial v1 11 11 ---- 12 12 I tested two solutions, both of which work: 13 1. Running system checks inside each worker thread, to ensure the side effect described above is executed in each process:13 1. Running system checks inside each worker, to ensure the side effect described above is executed in each process: 14 14 {{{#!diff 15 15 diff --git a/django/test/runner.py b/django/test/runner.py … … 100 100 101 101 Adam, what do you think? Would you like to prepare a patch with a regression test? 102 103 If folks cannot reproduce the issue, I would venture a guess that it's due to the difference between `"spawn"` and `"fork"` defaults. I tested on MacOS where the default is spawn.