Skip to content

Commit a904f41

Browse files
committed
Do not run the test_process_forkserver_pickle test on Windows
1 parent bb7e87a commit a904f41

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

Lib/test/test_profiling/test_tracing_profiler.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,8 @@ def test_process_spawn_pickle(self):
219219
# gh-140729: test use Process in cProfile.
220220
self._test_process_run_pickle('spawn')
221221

222+
@unittest.skipIf(sys.platform == 'win32',
223+
"No 'forkserver' start method on Windows")
222224
def test_process_forkserver_pickle(self):
223225
# gh-140729: test use Process in cProfile.
224226
self._test_process_run_pickle('forkserver')

0 commit comments

Comments
 (0)