From e6a9e402ff90ea66ade1436aaa30d6073b171e61 Mon Sep 17 00:00:00 2001 From: Administrator Date: Sat, 25 Apr 2009 13:19:34 -0700 Subject: [PATCH] More fixes for testing on win32. --- IPython/testing/iptest.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index 9910f42c7..bba6d6a54 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -71,7 +71,8 @@ EXCLUDE = [pjoin('IPython', 'external'), pjoin('IPython', 'Extensions', 'numeric_formats'), pjoin('IPython', 'testing', 'attic'), pjoin('IPython', 'testing', 'tutils'), - pjoin('IPython', 'testing', 'tools') + pjoin('IPython', 'testing', 'tools'), + pjoin('IPython', 'testing', 'mkdoctests') ] if not have_wx: @@ -88,6 +89,10 @@ if not have_curses: if not sys.platform == 'win32': EXCLUDE.append(pjoin('IPython', 'platutils_win32')) +if sys.platform == 'win32': + EXCLUDE.append(pjoin('IPython', 'testing', 'plugin', 'test_exampleip')) + EXCLUDE.append(pjoin('IPython', 'testing', 'plugin', 'dtexample')) + if not os.name == 'posix': EXCLUDE.append(pjoin('IPython', 'platutils_posix'))