From e2b1035ff026d9a798ef1596c361683b116a1b28 Mon Sep 17 00:00:00 2001 From: goodboy Date: Tue, 21 Apr 2026 13:36:41 -0400 Subject: [PATCH] Skip `test_stale_entry_is_deleted` hanger with `subint`s --- tests/discovery/test_registrar.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/discovery/test_registrar.py b/tests/discovery/test_registrar.py index bd015608..02748370 100644 --- a/tests/discovery/test_registrar.py +++ b/tests/discovery/test_registrar.py @@ -132,6 +132,10 @@ async def say_hello_use_wait( return result +@pytest.mark.timeout( + 3, + method='thread', +) @tractor_test @pytest.mark.parametrize( 'func', @@ -545,6 +549,12 @@ def test_stale_entry_is_deleted( stale entry and not delivering a bad portal. ''' + if start_method == 'subint': + pytest.skip( + 'XXX SUBINT HANGING TEST XXX\n' + 'See oustanding issue(s)\n' + ) + async def main(): name: str = 'transport_fails_actor'