Skip to content

Commit

Permalink
Fix devtest pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
davesteele committed Sep 26, 2024
1 parent 7cfc976 commit 7ff45e6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion devtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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] = [
Expand Down

0 comments on commit 7ff45e6

Please sign in to comment.