We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When debugging issues pip-tools should be more helpful:
--log
This could be triggered through PIPTOOLS_DEBUG in the environment, -vv, or a new --debug option.
PIPTOOLS_DEBUG
-vv
--debug
It might be worth/good to have this with pip itself via an environment already, i.e. PIP_DEBUG=1 would behave like using --log=/dev/stderr.
PIP_DEBUG=1
--log=/dev/stderr
pip's logging get setup here: https://github.com/pypa/pip/blob/f8732ac06dcb7c6af81dcdc0cc3158196b796baf/src/pip/_internal/cli/base_command.py#L133-L137
The text was updated successfully, but these errors were encountered:
Hello @blueyed,
Sounds reasonable!
2. keep build directories, so that you can run the setup commands from there. Currently pip cleans them up.
Do you know how to force pip to keep build directories?
pip
Sorry, something went wrong.
Related to #321
print/log executed commands, e.g. https://github.com/pypa/pip/blob/f8732ac06dcb7c6af81dcdc0cc3158196b796baf/src/pip/_internal/utils/misc.py#L721 - pip appears to have some logging for this (see the --log option), which could be configured for this keep build directories, so that you can run the setup commands from there. Currently pip cleans them up.
#1080 introduced --pip-args, so now any additional pip's options can be passed, e.g.:
--pip-args
$ pip-compile --pip-args="--no-clean -vv"
I'll close this then. Feel free to reopen if it doesn't resolve the issue. Thanks!
No branches or pull requests
When debugging issues pip-tools should be more helpful:
--log
option), which could be configured for thisThis could be triggered through
PIPTOOLS_DEBUG
in the environment,-vv
, or a new--debug
option.It might be worth/good to have this with pip itself via an environment already, i.e.
PIP_DEBUG=1
would behave like using--log=/dev/stderr
.pip's logging get setup here: https://github.com/pypa/pip/blob/f8732ac06dcb7c6af81dcdc0cc3158196b796baf/src/pip/_internal/cli/base_command.py#L133-L137
The text was updated successfully, but these errors were encountered: