From 6b6e0fe34c82b4d546acc22cb0a5c9a8bf1dc789 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Fri, 8 Jan 2021 14:40:07 +0100 Subject: [PATCH] pytest: Mark `test_lockup_drain` as disabled It's been causing me headaches for some time, and it's just getting annoying. Will file an issue to track progress. --- tests/test_pay.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_pay.py b/tests/test_pay.py index ddb45774a..32f9d9d85 100644 --- a/tests/test_pay.py +++ b/tests/test_pay.py @@ -2354,6 +2354,7 @@ def test_channel_spendable_receivable_capped(node_factory, bitcoind): assert l2.rpc.listpeers()['peers'][0]['channels'][0]['receivable_msat'] == Millisatoshi(0xFFFFFFFF) +@unittest.skipIf(True, "Test is extremely flaky") @unittest.skipIf(not DEVELOPER and VALGRIND, "Doesn't raise exception, needs better sync") def test_lockup_drain(node_factory, bitcoind): """Try to get channel into a state where opener can't afford fees on additional HTLC, so peer can't add HTLC"""