You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using uv run --isolated to run my library's tests in an isolated environment (as discussed here). Sometimes, the cause of test failures is related to the version of a dependency, so I want to see what uv installs when creating my environment. Unfortunately, in the standard invocation, nothing gets printed out.
When I use the --verbose flag, it does print out the packages that get installed, but I also get 8000+ lines of DEBUG statements.
I would like either a flag or more granular control on --verbose to be able to see what packages are installed without all of the DEBUG statements about resolution.
uv 0.5.24
For reference, this is what I'm running (the templating comes from using Just):
uv run --python {{python}} --no-editable --all-extras --no-dev --group test --isolated \
python -I -m pytest -n auto {{args}}
Example
No response
The text was updated successfully, but these errors were encountered:
Summary
I am using
uv run --isolated
to run my library's tests in an isolated environment (as discussed here). Sometimes, the cause of test failures is related to the version of a dependency, so I want to see what uv installs when creating my environment. Unfortunately, in the standard invocation, nothing gets printed out.When I use the
--verbose
flag, it does print out the packages that get installed, but I also get 8000+ lines of DEBUG statements.I would like either a flag or more granular control on
--verbose
to be able to see what packages are installed without all of the DEBUG statements about resolution.uv 0.5.24
For reference, this is what I'm running (the templating comes from using Just):
uv run --python {{python}} --no-editable --all-extras --no-dev --group test --isolated \ python -I -m pytest -n auto {{args}}
Example
No response
The text was updated successfully, but these errors were encountered: