From ed919b2c7cbb0eb221bde333c61c1b22a2b7074f Mon Sep 17 00:00:00 2001 From: Ken Sedgwick Date: Sat, 17 Feb 2024 01:47:26 -0800 Subject: [PATCH] tests: skip test_gossip_not_dying because frequently fails --- tests/test_gossip.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_gossip.py b/tests/test_gossip.py index 3897642e0b40..abf5ceb20c02 100644 --- a/tests/test_gossip.py +++ b/tests/test_gossip.py @@ -1921,6 +1921,7 @@ def test_close_12_block_delay(node_factory, bitcoind): wait_for(lambda: l4.rpc.listchannels(source=l2.info['id'])['channels'] == []) +@unittest.skipIf(os.getenv('SUBDAEMON').startswith('hsmd:remote_hsmd'), "skip until v24.02rc2") def test_gossip_not_dying(node_factory, bitcoind): l1 = node_factory.get_node() l2, l3 = node_factory.line_graph(2, wait_for_announce=True)