From 3a6b9f2ec688fcb4e78ff3732098790b250cdf8f Mon Sep 17 00:00:00 2001 From: Alex Myers Date: Wed, 13 Dec 2023 16:05:43 +1030 Subject: [PATCH] pytest: skip test_hook_crash on liquid CI --- tests/test_plugin.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_plugin.py b/tests/test_plugin.py index 51140f352..58eb81368 100644 --- a/tests/test_plugin.py +++ b/tests/test_plugin.py @@ -1852,6 +1852,7 @@ def test_bcli(node_factory, bitcoind, chainparams): assert not resp["success"] and "decode failed" in resp["errmsg"] +@unittest.skipIf(TEST_NETWORK != 'regtest', 'p2tr addresses not supported by elementsd') def test_hook_crash(node_factory, executor, bitcoind): """Verify that we fail over if a plugin crashes while handling a hook.