From 7db44e7e390b7048b1297412c7106489edcc63ba Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Mon, 23 Sep 2013 17:02:58 -0700 Subject: [PATCH] Fix excludes for IPython.testing --- IPython/testing/iptest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index c263bc9b8..054574b2a 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -214,10 +214,10 @@ sec.exclude('inputhookgtk') sec.exclude('inputhook') # testing: -sec = test_sections['lib'] +sec = test_sections['testing'] # This guy is probably attic material sec.exclude('mkdoctests') -# These have to be skipped on win32 because the use echo, rm, cd, etc. +# These have to be skipped on win32 because they use echo, rm, cd, etc. # See ticket https://github.com/ipython/ipython/issues/87 if sys.platform == 'win32': sec.exclude('plugin.test_exampleip')