Commit 0ade9e4
committed
Tests: Explicitly set multiprocessing start method to "fork"
By using multiprocessing's ForkProcess, the testsuite will also start
working on macOS again, even on Python 3.8+.
The background on this is that beginning with Python 3.8+, "fork" is not
the default on all platforms anymore but has been changed to "spawn" on
macOS. This method, however, apparently is not compatible with how
multiprocessing is currently used within the test harness.1 parent 973658c commit 0ade9e4
1 file changed
+4
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| 32 | + | |
32 | 33 | | |
33 | 34 | | |
34 | 35 | | |
35 | | - | |
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| |||
396 | 396 | | |
397 | 397 | | |
398 | 398 | | |
399 | | - | |
| 399 | + | |
400 | 400 | | |
401 | 401 | | |
402 | 402 | | |
| |||
529 | 529 | | |
530 | 530 | | |
531 | 531 | | |
532 | | - | |
533 | | - | |
| 532 | + | |
| 533 | + | |
534 | 534 | | |
535 | 535 | | |
536 | 536 | | |
| |||
0 commit comments