From 27b66997da14348be0a50e75e008d5d1598a1540 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Fri, 25 Jan 2019 22:48:55 +0100 Subject: [PATCH] pytest: Temporarily disable test_htlcs_cltv_only_difference with VG It is suddenly timing out a lot and is breaking master, so we temporarily disable it until it is fixed. Signed-off-by: Christian Decker --- tests/test_pay.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_pay.py b/tests/test_pay.py index 0ed7c10dc..3c6262785 100644 --- a/tests/test_pay.py +++ b/tests/test_pay.py @@ -1,6 +1,6 @@ from fixtures import * # noqa: F401,F403 from lightning import RpcError -from utils import DEVELOPER, wait_for, only_one, sync_blockheight +from utils import DEVELOPER, wait_for, only_one, sync_blockheight, SLOW_MACHINE import copy @@ -1090,7 +1090,7 @@ def test_forward_stats(node_factory, bitcoind): assert l3.rpc.getinfo()['msatoshi_fees_collected'] == 0 -@unittest.skipIf(not DEVELOPER, "needs DEVELOPER=1 for dev_ignore_htlcs") +@unittest.skipIf(not DEVELOPER or SLOW_MACHINE, "needs DEVELOPER=1 for dev_ignore_htlcs, and temporarily disabled on Travis") def test_htlcs_cltv_only_difference(node_factory, bitcoind): # l1 -> l2 -> l3 -> l4 # l4 ignores htlcs, so they stay.