bugfix #13224: hide progress dots in --quiet mode#14238
bugfix #13224: hide progress dots in --quiet mode#14238steinsag wants to merge 1 commit intopytest-dev:mainfrom
Conversation
…s added: do not even show progress dots
RonnyPfannschmidt
left a comment
There was a problem hiding this comment.
-qq or -qqq should trigger this, just quiet should not
I agree, but let's settle on Besides this, we also need an integration test to ensure it works and does not regress in the future. |
This comment was marked as spam.
This comment was marked as spam.
What would be the long version of Can you give me pointers how to write an integration test like pointing me at an example? |
|
Sorry, this went a bit out of hand, won't happen again. Cheers, D. |
|
ping @nicoddemus & @RonnyPfannschmidt What would be the long version of -qq? --quiet --quiet? Can you give me pointers how to write an integration test like pointing me at an example? |
|
Q is the short option for quiet Repeating works the same with long versions For sanity i recommend testing only with short options Argparse internally manages the rest |
|
To complement @RonnyPfannschmidt's answer: Argument parsing already handles The integration test should:
|
closes #13224: do not show progress dots in --quiet mode