From 0a20cad2023ed26f546cf1242ae3fe84d7e0fe96 Mon Sep 17 00:00:00 2001 From: Peter Cock Date: Mon, 24 Aug 2020 19:28:12 +0100 Subject: [PATCH] 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. --- testing/util.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testing/util.py b/testing/util.py index 4edb7a9e..f3bad308 100644 --- a/testing/util.py +++ b/testing/util.py @@ -46,6 +46,7 @@ def run_opts( files=(), color=False, verbose=False, + quiet=False, hook=None, from_ref='', to_ref='', @@ -63,6 +64,7 @@ def run_opts( files=files, color=color, verbose=verbose, + quiet=quiet, hook=hook, from_ref=from_ref, to_ref=to_ref,