Add quiet mode to testing.util.run_opts

Placed next to verbose due to logical connection.
This is not part of a public API so the change
should not matter - the tests all seem to pass
arguments by name anyway.
This commit is contained in:
Peter Cock 2020-08-24 19:28:12 +01:00
parent 662fdf2687
commit 0a20cad202

View file

@ -46,6 +46,7 @@ def run_opts(
files=(), files=(),
color=False, color=False,
verbose=False, verbose=False,
quiet=False,
hook=None, hook=None,
from_ref='', from_ref='',
to_ref='', to_ref='',
@ -63,6 +64,7 @@ def run_opts(
files=files, files=files,
color=color, color=color,
verbose=verbose, verbose=verbose,
quiet=quiet,
hook=hook, hook=hook,
from_ref=from_ref, from_ref=from_ref,
to_ref=to_ref, to_ref=to_ref,