From 7cc9af6f83c41377157c75ef23b841735978e2a4 Mon Sep 17 00:00:00 2001 From: Eric Soroos Date: Tue, 28 Jan 2014 12:53:02 -0800 Subject: [PATCH] added close/join --- Tests/run.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Tests/run.py b/Tests/run.py index 173536a01..521e66af8 100644 --- a/Tests/run.py +++ b/Tests/run.py @@ -67,9 +67,10 @@ def main(): files = filter_tests(files) - print (files) pool = Pool() results = pool.map(test_one, files) + pool.close() + pool.join() for test,(result, status) in zip(files,results): if result == "ok":