From eae49727b16cb2187ab04d705cd7ef0d3ad4dee7 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Mon, 7 Dec 2020 12:10:34 +0100 Subject: [PATCH] pytest: Disable flaky test_fundchannel_start_alternate This test has been causing most CI runs to fail. See tracking issue #4265 for discussion on fixing and re-enabling it. Changelog-None --- tests/test_connection.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_connection.py b/tests/test_connection.py index 8f506903d..6988cf44c 100644 --- a/tests/test_connection.py +++ b/tests/test_connection.py @@ -2841,6 +2841,7 @@ def test_htlc_retransmit_order(node_factory, executor): # If order was wrong, we'll get a LOG_BROKEN and fixtures will complain. +@unittest.skipIf(True, "Currently failing, see tracking issue #4265") def test_fundchannel_start_alternate(node_factory, executor): ''' Test to see what happens if two nodes start channeling to each other alternately.