From 59117c597edba98e894b27e055eb77ee1a5d1700 Mon Sep 17 00:00:00 2001 From: Fernando Perez Date: Tue, 12 Jan 2010 23:58:30 -0800 Subject: [PATCH] Include 'kernel' in the nose tests as well; it picks up doctests that trial doesn't. --- IPython/testing/iptest.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index 3bcefa744..258573db4 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -267,7 +267,11 @@ def make_runners(): """ nose_packages = ['config', 'core', 'extensions', 'frontend', 'lib', - 'scripts', 'testing', 'utils'] + 'scripts', 'testing', 'utils', + # Note that we list the kernel here, though the bulk of it + # is twisted-based, because nose picks up doctests that + # twisted doesn't. + 'kernel'] trial_packages = ['kernel'] if have_wx: