Adding -q to install_command does not make it avoid listing output of pip freeze, making the console output of tox very verbose, especially for people using lots of target environments.
Tried both approaches but without any luck.
install_command = pip install -q {opts} {packages}
list_dependencies_command = pip -q freeze > pip-freeze.txt
Adding
-qto install_command does not make it avoid listing output of pip freeze, making the console output of tox very verbose, especially for people using lots of target environments.Tried both approaches but without any luck.