pytest: fix RUST=0 pytest.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell 2022-04-01 14:43:35 +10:30
parent 241a891190
commit 5a1e58f0dc
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,6 @@ from pathlib import Path
from pyln.testing.utils import env, TEST_NETWORK, wait_for
from ephemeral_port_reserve import reserve
import grpc
from primitives_pb2 import AmountOrAny, Amount
import pytest
import subprocess
@ -75,6 +74,7 @@ def test_grpc_connect(node_factory):
# These only exist if we have rust!
from node_pb2_grpc import NodeStub # noqa: E402
import node_pb2 as nodepb # noqa: E402
from primitives_pb2 import AmountOrAny, Amount # noqa: E402
grpc_port = reserve()
bin_path = Path.cwd() / "target" / "debug" / "cln-grpc"