Show verbose output during system install in test (#7304)

We do this for the other installs and it is helpful for debugging

This is missing in
https://github.com/astral-sh/uv/actions/runs/10817725906/job/30011855241?pr=7300
This commit is contained in:
Zanie Blue 2024-09-11 14:31:51 -05:00 committed by GitHub
parent 58a157a0ad
commit b05217e624
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -68,7 +68,8 @@ if __name__ == "__main__":
# Install the package (`pylint`).
logging.info("Installing the package `pylint`.")
subprocess.run(
[uv, "pip", "install", "pylint", "--system"] + allow_externally_managed,
[uv, "pip", "install", "pylint", "--system", "--verbose"]
+ allow_externally_managed,
cwd=temp_dir,
check=True,
)