From 208e94b11debbddb17f4c1be91e0811f6418bb7c Mon Sep 17 00:00:00 2001 From: daywalker90 <8257956+daywalker90@users.noreply.github.com> Date: Fri, 3 Jan 2025 17:05:13 +0100 Subject: [PATCH] CI: install pyln-testing before running generic setup --- .ci/test.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.ci/test.py b/.ci/test.py index e3df90600..773624a14 100644 --- a/.ci/test.py +++ b/.ci/test.py @@ -139,6 +139,11 @@ def prepare_generic(p: Plugin, directory: Path, env: dict, workflow: str) -> boo stderr=subprocess.STDOUT, ) + if workflow == "nightly": + install_dev_pyln_testing(pip_path) + else: + install_pyln_testing(pip_path) + if p.details["setup"].exists(): print(f"Running setup script from {p.details['setup']}") subprocess.check_call( @@ -147,11 +152,6 @@ def prepare_generic(p: Plugin, directory: Path, env: dict, workflow: str) -> boo stderr=subprocess.STDOUT, ) - if workflow == "nightly": - install_dev_pyln_testing(pip_path) - else: - install_pyln_testing(pip_path) - subprocess.check_call([pip_path, "freeze"]) return True