mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 22:45:27 +01:00
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 <decker.christian@gmail.com>
This commit is contained in:
parent
0266c33476
commit
27b66997da
1 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue