From 3b8f40a5c49c0e68dc989907e3c51b689c15b7da Mon Sep 17 00:00:00 2001 From: Alexander Polcyn Date: Mon, 2 Oct 2017 10:43:51 -0700 Subject: [PATCH] Tentatively reduce parallelization limit on linux/macos to 128 --- tools/run_tests/run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 29055848e2c..076045614cb 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -122,7 +122,7 @@ def max_parallel_tests_for_current_platform(): # so far on windows. if jobset.platform_string() == 'windows': return 64 - return 1e6 + return 128 # SimpleConfig: just compile with CONFIG=config, and run the binary to test class Config(object):