Skip to content

Commit

Permalink
pytest: suppress failing renepay test for Liquid.
Browse files Browse the repository at this point in the history
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
  • Loading branch information
rustyrussell committed Aug 23, 2024
1 parent 50949b7 commit 9d88ce3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_renepay.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import subprocess
import os
import re
import unittest


def test_simple(node_factory):
Expand Down Expand Up @@ -770,6 +771,7 @@ def test_privatechan(node_factory, bitcoind):
assert invoice["amount_received_msat"] >= Millisatoshi("1000sat")


@unittest.skipIf(TEST_NETWORK == 'liquid-regtest', "broken for some reason")
def test_hardmpp2(node_factory, bitcoind):
"""Credits to @daywalker90 for this test case."""
opts = {"disable-mpp": None, "fee-base": 0, "fee-per-satoshi": 10}
Expand Down

0 comments on commit 9d88ce3

Please sign in to comment.