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