Do not use verbose mode in unittests.

This commit is contained in:
Jussi Pakkanen 2024-04-09 22:19:31 +03:00
parent d6a0b7a6ec
commit 230097fb17
1 changed files with 1 additions and 1 deletions

View File

@ -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)