-
-
Notifications
You must be signed in to change notification settings - Fork 528
New issue
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
More verbose when installing deps! #353
Comments
@danilobelini maybe a new option like |
rogalski
added a commit
to rogalski/tox
that referenced
this issue
Nov 5, 2016
rogalski
added a commit
to rogalski/tox
that referenced
this issue
Nov 6, 2016
Solves issue tox-dev#353. Add changelog and contributors entry Add integration tests expose _get_verbosity() in public api, improve docs and help messages
I guess it can be closed, since my PR is merged. |
yes, thanks Lukasz! |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I've got some projects whose requirements take a long time until pip installs all the deps, e.g., projects that require scipy. Running such projects in a CI results in a timeout error before the installation finishes, due to the lack of new output for too long.
In the past I tried to install these packages as part of the commands, but as I said, it takes too long, that's not something I wish to reinstall every time I'm calling the tox for testing my code. And even if I call
pip install -I
in my commands, the CI wouldn't be able to distinguish between an installation error (the ones that might happen when I calltox --notest
during installation) and an actual project failure. I think there should be a verbosity level that shows the installer outputs while it's installing the deps.The text was updated successfully, but these errors were encountered: