diff --git a/tests/test_shm.py b/tests/test_shm.py index 84d0988e..e63aef07 100644 --- a/tests/test_shm.py +++ b/tests/test_shm.py @@ -120,6 +120,13 @@ async def child_read_shm_list( print(f'(child): reading frame: {frame}') +@pytest.mark.skipif( + platform.system() == 'Windows', + reason=( + 'parent/child shm IPC deadlocks on Windows ' + '(frame-size dependent hang); nascent — see #404' + ), +) @pytest.mark.parametrize( 'use_str', [False, True],