-
-
Notifications
You must be signed in to change notification settings - Fork 531
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
tox should not silently ignore multiple -e options #109
Comments
Original comment by @hpk42 fix issue109 and fix issue111: multiple "-e" options are now combined → <<cset 3be5bca16f8b>> |
Original comment by @hpk42 Behaviour of -e has not changed, but can be set by passing True or False This parameter should come from a user specifyable default value _split_env() was factored out of class parseini to enable testing The issue #111: error on specifying same env twice ("tox -e py27,py27") → <> |
Original comment by @hpk42 Behaviour of -e has not changed, but can be set by passing True or False This parameter should come from a user specifyable default value _split_env() was factored out of class parseini to enable testing The issue #111: error on specifying same env twice ("tox -e py27,py27") → <<cset 96e1ba41e1c0>> |
Original comment by @hpk42 Behaviour of -e has not changed, but can be set by passing True or False This parameter should come from a user specifyable default value _split_env() was factored out of class parseini to enable testing The issue #111: error on specifying same env twice ("tox -e py27,py27") → <> |
When you invoke "tox -e py26 --notest" and want to rerun taht py27, one would expect
that just adding " -e py27" at the end of the previous command would work.
But that silently ingores "-e py26" and you have to do "tox -e py26,py27 --notest" (which to me is not a natural commandline invocation YMMV)
Tox should not silently ignore all but the last "-e" option and:
The three ways of handling this (silent, warning, add together) could be set in $HOME/.tox/tox.ini, if backwards compatibility is required with silently ignoring as default.
The text was updated successfully, but these errors were encountered: