Is it possibile with tox
to avoid the redirect of the output to a file when installing dependencies with pip
? I want to see what's being installed so I would like to log to stdout instead of a file.
If you'd like to see what's been installed for each run, what about using pip freeze
? You can add it to the commands
section and it will dump the installed packages in requirements format.
commands =
pip freeze
... rest of your commands here.
I often use this strategy for doing something like python echo_versions.py
where echo_versions.py
is a small script that shows the versions of packages that I'm interested in for each run - just to ensure that the expected package is installed.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With