From b05217e624580912e857816379f08ec634692dd8 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Wed, 11 Sep 2024 14:31:51 -0500 Subject: [PATCH] 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 --- scripts/check_system_python.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/check_system_python.py b/scripts/check_system_python.py index fa5603dbc..acbed031f 100755 --- a/scripts/check_system_python.py +++ b/scripts/check_system_python.py @@ -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, )