From 055c6cdcde30a89c750c426603cfd819b6e4a31e Mon Sep 17 00:00:00 2001 From: Brian Granger Date: Fri, 24 Apr 2009 11:04:32 -0700 Subject: [PATCH] Run the top level module tests in a single process. --- IPython/testing/iptest.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index a76f0ce27..263b293cd 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -176,7 +176,7 @@ def make_runners(): # Make runners runners = dict(zip(top_pack, [IPTester(params=v) for v in packages])) - + # Test IPython.kernel using trial if twisted is installed try: import zope.interface @@ -187,8 +187,7 @@ def make_runners(): else: runners['trial'] = IPTester('trial',['IPython']) - for m in modules: - runners[m] = IPTester(params=m) + runners['modules'] = IPTester(params=modules) return runners