Browse Source

pytest: Add flaky dependency and mark as test_closing_different_fees

This is mainly just a stopgap solution until we get to stabilize the test.

Signed-off-by: Christian Decker <decker.christian@gmail.com>
ppa-0.6.1
Christian Decker 7 years ago
committed by Rusty Russell
parent
commit
65cac1ba85
  1. 3
      tests/requirements.txt
  2. 2
      tests/test_lightningd.py

3
tests/requirements.txt

@ -1 +1,4 @@
python-bitcoinlib==0.7.0
ephemeral-port-reserve==1.1.0
pytest-forked==0.2
flaky==3.4.0

2
tests/test_lightningd.py

@ -1,6 +1,7 @@
from concurrent import futures
from decimal import Decimal
from ephemeral_port_reserve import reserve as reserve_port
from flaky import flaky
from utils import wait_for
import copy
@ -1439,6 +1440,7 @@ class LightningDTests(BaseLightningDTests):
bitcoind.generate_block(5)
sync_blockheight([l1])
@flaky
def test_closing_different_fees(self):
l1 = self.node_factory.get_node()

Loading…
Cancel
Save