From 18483ca582feb5f05dc0fa87e20ccdbe370c34ca Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Thu, 14 Jan 2021 17:38:41 +0100 Subject: [PATCH] pytest: Disable test_v2_open if not developer It requires `--dev-force-features` which isn't available without `DEVELOPER=1` --- tests/test_connection.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_connection.py b/tests/test_connection.py index 624c0140b..e7d35a76d 100644 --- a/tests/test_connection.py +++ b/tests/test_connection.py @@ -949,6 +949,7 @@ def test_funding_toolarge(node_factory, bitcoind): @unittest.skipIf(TEST_NETWORK != 'regtest', 'elementsd doesnt yet support PSBT features we need') @unittest.skipIf(not EXPERIMENTAL_FEATURES, "dual-funding is experimental only") +@unittest.skipIf(not DEVELOPER, "Requires --dev-force-features") def test_v2_open(node_factory, bitcoind, chainparams): l1, l2 = node_factory.get_nodes(2, opts=[{'dev-force-features': '+223'},