mirror of
https://github.com/astral-sh/uv.git
synced 2025-11-01 12:24:15 +00:00
Fix verbose logging configuration for flake (#15902)
Alas in
5054932672
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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue