From 811575998421ab28534f83481446086456b7efba Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Mon, 1 Aug 2022 16:57:42 -0400 Subject: [PATCH] Mark final nested-actor debugger test --- tests/test_debugger.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/tests/test_debugger.py b/tests/test_debugger.py index 2780e3e..61fa5af 100644 --- a/tests/test_debugger.py +++ b/tests/test_debugger.py @@ -771,15 +771,18 @@ def test_multi_nested_subactors_error_through_nurseries( @pytest.mark.timeout(15) +@has_nested_actors def test_root_nursery_cancels_before_child_releases_tty_lock( spawn, start_method, ctlc: bool, ): - """Test that when the root sends a cancel message before a nested - child has unblocked (which can happen when it has the tty lock and - is engaged in pdb) it is indeed cancelled after exiting the debugger. - """ + ''' + Test that when the root sends a cancel message before a nested child + has unblocked (which can happen when it has the tty lock and is + engaged in pdb) it is indeed cancelled after exiting the debugger. + + ''' timed_out_early = False child = spawn('root_cancelled_but_child_is_in_tty_lock')