##// END OF EJS Templates
More fixes for testing on win32.
Administrator -
Show More
@@ -29,13 +29,6 b' def setastest(tf=True):'
29 29 tf : bool
30 30 If True specifies this is a test, not a test otherwise
31 31
32 e.g
33 >>> from numpy.testing.decorators import setastest
34 >>> @setastest(False)
35 ... def func_with_test_in_name(arg1, arg2): pass
36 ...
37 >>>
38
39 32 This decorator cannot use the nose namespace, because it can be
40 33 called from a non-test module. See also istest and nottest in
41 34 nose.tools
@@ -71,7 +71,8 b" EXCLUDE = [pjoin('IPython', 'external'),"
71 71 pjoin('IPython', 'Extensions', 'numeric_formats'),
72 72 pjoin('IPython', 'testing', 'attic'),
73 73 pjoin('IPython', 'testing', 'tutils'),
74 pjoin('IPython', 'testing', 'tools')
74 pjoin('IPython', 'testing', 'tools'),
75 pjoin('IPython', 'testing', 'mkdoctests')
75 76 ]
76 77
77 78 if not have_wx:
@@ -88,6 +89,10 b' if not have_curses:'
88 89 if not sys.platform == 'win32':
89 90 EXCLUDE.append(pjoin('IPython', 'platutils_win32'))
90 91
92 if sys.platform == 'win32':
93 EXCLUDE.append(pjoin('IPython', 'testing', 'plugin', 'test_exampleip'))
94 EXCLUDE.append(pjoin('IPython', 'testing', 'plugin', 'dtexample'))
95
91 96 if not os.name == 'posix':
92 97 EXCLUDE.append(pjoin('IPython', 'platutils_posix'))
93 98
General Comments 0
You need to be logged in to leave comments. Login now