mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-18 05:12:45 +01:00
pytest: Disable test_funding_cancel_race on slow machines
The CI regularly trips up on this very taxing test (100 nodes) so only run it if we have the required horsepower.
This commit is contained in:
parent
dbb83a1bc3
commit
94820ad559
@ -11,6 +11,7 @@ from utils import (
|
||||
check_coin_moves, first_channel_id, account_balance, basic_fee,
|
||||
EXPERIMENTAL_FEATURES
|
||||
)
|
||||
from pyln.testing.utils import SLOW_MACHINE, VALGRIND
|
||||
from bitcoin.core import CMutableTransaction, CMutableTxOut
|
||||
|
||||
import binascii
|
||||
@ -1042,6 +1043,7 @@ def test_funding_external_wallet_corners(node_factory, bitcoind):
|
||||
l1.rpc.close(l2.info['id'])
|
||||
|
||||
|
||||
@unittest.skipIf(SLOW_MACHINE and not VALGRIND, "Way too taxing on CI machines")
|
||||
def test_funding_cancel_race(node_factory, bitcoind, executor):
|
||||
l1 = node_factory.get_node()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user