From 24ef9193343f746083a455347c3bb551d84b79ce Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Tue, 13 Oct 2020 14:16:20 -0400 Subject: [PATCH] Skip sync sleep test on mp backend --- tests/test_cancellation.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_cancellation.py b/tests/test_cancellation.py index 80232bf..aace021 100644 --- a/tests/test_cancellation.py +++ b/tests/test_cancellation.py @@ -435,6 +435,9 @@ def test_cancel_while_childs_child_in_sync_sleep( down even when that cancellation is triggered by the parent 2 nurseries "up". """ + if start_method == 'forkserver': + pytest.skip("Forksever sux hard at resuming from sync sleep...") + async def main(): with trio.fail_after(2): async with tractor.open_nursery() as tn: