##// END OF EJS Templates
Fix test failure when pexpect not available
Fernando Perez -
Show More
@@ -70,6 +70,7 def test_for(mod):
70 70 else:
71 71 return True
72 72
73
73 74 have_curses = test_for('_curses')
74 75 have_wx = test_for('wx')
75 76 have_wx_aui = test_for('wx.aui')
@@ -136,7 +137,8 def make_exclude():
136 137 exclusions.append(ipjoin('utils', 'platutils_posix'))
137 138
138 139 if not have_pexpect:
139 exclusions.append(ipjoin('scripts', 'irunner'))
140 exclusions.extend([ipjoin('scripts', 'irunner'),
141 ipjoin('lib', 'irunner')])
140 142
141 143 # This is scary. We still have things in frontend and testing that
142 144 # are being tested by nose that use twisted. We need to rethink
General Comments 0
You need to be logged in to leave comments. Login now