mirror of https://github.com/astral-sh/uv
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:
parent
705b35c552
commit
664eadc59a
|
|
@ -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!(
|
||||
|
|
|
|||
Loading…
Reference in New Issue