From 664eadc59a0bf0d15f208e343d860a931ad147bc Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Tue, 16 Sep 2025 21:54:12 -0500 Subject: [PATCH] Fix verbose logging configuration for flake (#15902) Alas in https://github.com/astral-sh/uv/actions/runs/17784455913/job/50549326728?pr=15900 we caught the flake with the assert but the `-vv` flags were not in the right position! --- crates/uv/tests/it/run.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv/tests/it/run.rs b/crates/uv/tests/it/run.rs index 54a1bae31..ff97419ac 100644 --- a/crates/uv/tests/it/run.rs +++ b/crates/uv/tests/it/run.rs @@ -5101,10 +5101,10 @@ fn run_groups_requires_python() -> Result<()> { // See https://github.com/astral-sh/uv/issues/14160 let output = context .run() + .arg("-vv") .arg("python") .arg("-c") .arg("import typing_extensions") - .arg("-vv") .output()?; let stderr = String::from_utf8_lossy(&output.stderr); assert!(