From 29af74bba68df093158179e85039dc1580c3b68a Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Mon, 13 May 2019 10:37:38 -0700 Subject: [PATCH] core size = 1 --- test/run.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/run.py b/test/run.py index b5898b53..a3a834a9 100755 --- a/test/run.py +++ b/test/run.py @@ -279,6 +279,7 @@ def executeJobs(jobs): '''Execute a list of job concurrently on multiple CPU/cores''' poolSize = multiprocessing.cpu_count() + poolSize = 1 # for windows pool = multiprocessing.Pool(poolSize) results = pool.map(executeJob, jobs)