Skip to content

Commit a575118

Browse files
committed
Skip some tests:
- test_funder_contribution_limits: dual-funding not supported yet - test_htlc_too_dusty_incoming: fee above maximum: 81720 > 80000
1 parent 227f2f4 commit a575118

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

tests/test_opening.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1174,6 +1174,7 @@ def test_funder_options(node_factory, bitcoind):
11741174

11751175

11761176
@unittest.skipIf(TEST_NETWORK != 'regtest', 'elementsd doesnt yet support PSBT features we need')
1177+
@unittest.skipIf(os.getenv('SUBDAEMON').startswith('hsmd:remote_hsmd'), "dual-funding not supported yet")
11771178
def test_funder_contribution_limits(node_factory, bitcoind):
11781179
opts = {'experimental-dual-fund': None,
11791180
'feerates': (5000, 5000, 5000, 5000)}

tests/test_pay.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2502,6 +2502,7 @@ def test_htlc_too_dusty_outgoing(node_factory, bitcoind, chainparams):
25022502
l1.rpc.sendpay(route, inv['payment_hash'], payment_secret=inv['payment_secret'])
25032503

25042504

2505+
@unittest.skipIf(os.getenv('SUBDAEMON').startswith('hsmd:remote_hsmd'), "fee above maximum: 81720 > 80000")
25052506
@pytest.mark.developer("needs DEVELOPER=1 for dev_ignore_htlcs")
25062507
def test_htlc_too_dusty_incoming(node_factory, bitcoind):
25072508
""" Try to hit the 'too much dust' limit, should fail the HTLC """

0 commit comments

Comments
 (0)