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
3001185524
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

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,
)