From 230097fb171faa1e4c0cd5d6a81b570d09af6293 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Tue, 9 Apr 2024 22:19:31 +0300 Subject: [PATCH] Do not use verbose mode in unittests. --- run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.py b/run_tests.py index 207653219..186893f6a 100755 --- a/run_tests.py +++ b/run_tests.py @@ -397,7 +397,7 @@ def main(): else: print(mlog.bold('Running unittests.')) print(flush=True) - cmd = mesonlib.python_command + ['run_unittests.py', '-v'] + backend_flags + cmd = mesonlib.python_command + ['run_unittests.py'] + backend_flags if options.failfast: cmd += ['--failfast'] returncode += subprocess_call(cmd, env=env)