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!
This commit is contained in:
Zanie Blue 2025-09-16 21:54:12 -05:00 committed by GitHub
parent 705b35c552
commit 664eadc59a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -5101,10 +5101,10 @@ fn run_groups_requires_python() -> Result<()> {
// See https://github.com/astral-sh/uv/issues/14160 // See https://github.com/astral-sh/uv/issues/14160
let output = context let output = context
.run() .run()
.arg("-vv")
.arg("python") .arg("python")
.arg("-c") .arg("-c")
.arg("import typing_extensions") .arg("import typing_extensions")
.arg("-vv")
.output()?; .output()?;
let stderr = String::from_utf8_lossy(&output.stderr); let stderr = String::from_utf8_lossy(&output.stderr);
assert!( assert!(