From b84b8d460dd933d203ad7e80cc727b72033149c3 Mon Sep 17 00:00:00 2001 From: Ken Sedgwick Date: Wed, 30 Aug 2023 14:10:33 -0700 Subject: [PATCH] tests: Only run splicing tests when EXPERIMENTAL_SPLICING Revert "splicing: Skip splice test until splicing is supported" This reverts commit bd9494c65be09e6f8ecb3bc49b50a859467a65fe. --- tests/test_splicing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_splicing.py b/tests/test_splicing.py index db74394095c0..51882e987e7f 100644 --- a/tests/test_splicing.py +++ b/tests/test_splicing.py @@ -9,9 +9,9 @@ ) +@unittest.skipIf(os.getenv('SUBDAEMON').startswith('hsmd:remote_hsmd') and os.getenv('EXPERIMENTAL_SPLICING') != '1', "splicing not supported yet") @pytest.mark.openchannel('v1') @pytest.mark.openchannel('v2') -@unittest.skipIf(os.getenv('SUBDAEMON').startswith('hsmd:remote_hsmd'), "splicing not supported by VLS yet (VLS #325)") @unittest.skipIf(TEST_NETWORK != 'regtest', 'elementsd doesnt yet support PSBT features we need') @flaky def test_splice(node_factory, bitcoind):