Remove all references to DEVELOPER env var

This commit is contained in:
Chris Guida
2024-01-26 14:38:16 -06:00
committed by mergify[bot]
parent 03ebec0dd7
commit 5305dbea0c
7 changed files with 5 additions and 26 deletions

View File

@@ -1,7 +1,6 @@
import unittest
import os
from pyln.testing.fixtures import * # noqa: F401,F403
from pyln.testing.utils import DEVELOPER
plugin_path = os.path.join(os.path.dirname(__file__), "probe.py")
@@ -18,7 +17,6 @@ def test_probe_starts(node_factory):
l1.start()
@unittest.skipIf(not DEVELOPER, "Gossip is slow")
def test_probe(node_factory):
l1, l2, l3, l4 = node_factory.line_graph(
4,
@@ -36,7 +34,6 @@ def test_probe(node_factory):
assert(res['failcode'] == 16399)
@unittest.skipIf(not DEVELOPER, "Gossip is slow")
def test_route_unreachable(node_factory):
l1, l2, l3, l4 = node_factory.line_graph(
4,