We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e5222d commit 7f0a6ddCopy full SHA for 7f0a6dd
1 file changed
Tools/scripts/run_tests.py
@@ -32,6 +32,8 @@ def main(regrtest_args):
32
'-r', # Randomize test order
33
'-w', # Re-run failed tests in verbose mode
34
])
35
+ if sys.platform == 'win32':
36
+ args.append('-n') # Silence alerts under Windows
37
if not any(is_multiprocess_flag(arg) for arg in regrtest_args):
38
args.extend(['-j', '0']) # Use all CPU cores
39
if not any(is_resource_use_flag(arg) for arg in regrtest_args):
0 commit comments