We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fork
forkserver
win32
1 parent 4a77617 commit 23062f7Copy full SHA for 23062f7
1 file changed
python/tests/test_pickle_multiprocessing.py
@@ -84,11 +84,18 @@ def _skip_if_multiprocessing_unavailable():
84
pytest.param(
85
"fork",
86
marks=pytest.mark.skipif(
87
- sys.platform == "darwin",
88
- reason="fork start method is unsafe with PyArrow/tokio on macOS",
+ sys.platform in ("darwin", "win32"),
+ reason="fork start method is not supported on Windows "
89
+ "and unsafe with PyArrow/tokio on macOS",
90
+ ),
91
92
+ pytest.param(
93
+ "forkserver",
94
+ marks=pytest.mark.skipif(
95
+ sys.platform == "win32",
96
+ reason="forkserver start method is not supported on Windows",
97
),
98
- "forkserver",
99
"spawn",
100
]
101
0 commit comments