Increased number of concurrent tests.

This commit is contained in:
Ross Thompson 2022-01-27 08:45:25 -06:00
parent 2b1aa9cada
commit 284d671da3

View File

@ -146,7 +146,7 @@ def main():
# Scale the number of concurrent processes to the number of test cases, but
# max out at a limited number of concurrent processes to not overwhelm the system
with Pool(processes=min(len(configs),25)) as pool:
with Pool(processes=min(len(configs),40)) as pool:
num_fail = 0
results = {}
for config in configs: