Include 'kernel' in the nose tests as well; it picks up doctests that trial

doesn't.
This commit is contained in:
Fernando Perez 2010-01-12 23:58:30 -08:00
parent 91791416ab
commit 59117c597e

View File

@ -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: