More fixes for testing on win32.

This commit is contained in:
Administrator 2009-04-25 13:19:34 -07:00
parent db440afb0f
commit e6a9e402ff

View File

@ -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'))