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)