From 7ff45e6aa2442433ecfa9b853cb5f1ad66bf2820 Mon Sep 17 00:00:00 2001 From: David Steele Date: Thu, 26 Sep 2024 15:05:03 -0400 Subject: [PATCH] Fix devtest pip install --- devtest.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/devtest.py b/devtest.py index e824b86..b9ab8c2 100755 --- a/devtest.py +++ b/devtest.py @@ -68,7 +68,10 @@ def run(cmd: str) -> subprocess.CompletedProcess: print("# Installing packages") - run("pip install " + " ".join(pkgs)) + for pkg in pkgs: + cp = run("pip install " + pkg) + print("Running", " ".join(cp.args)) + print(cp.stdout.decode()) tests: List[str] = [