-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
CliRunner.invoke
takes mix_stderr
which does nothing
#1435
Comments
Fairly sure this is fixed in master |
@davidism I believe that it is not. See on Lines 280 to 281 in 6944450
The parameter documentation does not include Lines 296 to 311 in 6944450
And the function code does not include Lines 312 to 357 in 6944450
|
I think this is at least partially fixed here: |
Some behavior is changed in CliRunner.invoke, the docstring isn't changed though. |
I still don't understand how that in any way addresses this issue, which is that the |
Hi Adam, you seem to have a specific idea in mind that we're having trouble understanding. If this is important to you and you have the time, it would probably be easier to create a PR fixing the issue rather than going back and forth more. |
I also just ran into this issue and was confused why stderr and stdout were mixed. Since it's easy to set this on the CliRunner object I endorse the #1442 |
mix_stderr
is a parameter ofCliRunner.invoke
.This is not documented in the docstring as a
:param
.Simply reading the code (which I did after trying this and seeing no output) shows that this parameter is not used.
mix_stderr
works onCliRunner.__init__
.The
mix_stderr
parameter should be removed, or changed to work and get documented.The text was updated successfully, but these errors were encountered: