mirror of
https://github.com/aljazceru/plugins.git
synced 2026-01-27 17:04:18 +01:00
Remove all references to DEVELOPER env var
This commit is contained in:
committed by
mergify[bot]
parent
03ebec0dd7
commit
5305dbea0c
@@ -1,5 +1,4 @@
|
||||
from pyln.testing.fixtures import * # noqa: F401,F403
|
||||
from pyln.testing.utils import DEVELOPER
|
||||
from pyln.client import RpcError
|
||||
from .utils import get_ours, get_theirs, wait_ours, wait_for_all_htlcs
|
||||
import os
|
||||
@@ -24,7 +23,6 @@ def test_plugin_starts(node_factory):
|
||||
l1.start()
|
||||
|
||||
|
||||
@unittest.skipIf(not DEVELOPER, "slow gossip, needs DEVELOPER=1")
|
||||
def test_drain_and_refill(node_factory, bitcoind):
|
||||
# Scenario: first drain then refill
|
||||
#
|
||||
@@ -84,7 +82,6 @@ def test_drain_and_refill(node_factory, bitcoind):
|
||||
assert(get_theirs(l1, scid12) < theirs_before * 0.05)
|
||||
|
||||
|
||||
@unittest.skipIf(not DEVELOPER, "slow gossip, needs DEVELOPER=1")
|
||||
def test_fill_and_drain(node_factory, bitcoind):
|
||||
# Scenario: first fill of an empty channel and drain afterwards.
|
||||
#
|
||||
@@ -133,7 +130,6 @@ def test_fill_and_drain(node_factory, bitcoind):
|
||||
assert(get_theirs(l1, scid12) < theirs_before * 0.05) # account some reserves
|
||||
|
||||
|
||||
@unittest.skipIf(not DEVELOPER, "slow gossip, needs DEVELOPER=1")
|
||||
def test_setbalance(node_factory, bitcoind):
|
||||
# SETUP: a basic circular setup to run setbalance tests
|
||||
#
|
||||
@@ -194,7 +190,6 @@ def balance(node, node_a, scid_a, node_b, scid_b, node_c):
|
||||
wait_for_all_htlcs([node, node_a, node_b])
|
||||
|
||||
|
||||
@unittest.skipIf(not DEVELOPER, "slow gossip, needs DEVELOPER=1")
|
||||
def test_drain_chunks(node_factory, bitcoind):
|
||||
# SETUP: a small mesh that enables testing chunks
|
||||
#
|
||||
@@ -277,7 +272,6 @@ def test_drain_chunks(node_factory, bitcoind):
|
||||
assert(get_theirs(l1, scid41) > amount * 0.9)
|
||||
|
||||
|
||||
@unittest.skipIf(not DEVELOPER, "slow gossip, needs DEVELOPER=1")
|
||||
def test_fill_chunks(node_factory, bitcoind):
|
||||
# SETUP: a small mesh that enables testing chunks
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user