##// END OF EJS Templates
Skip octavemagic tests if oct2py is unavailable.
Stefan van der Walt -
Show More
@@ -156,6 +156,7 b" have['qt'] = test_for('IPython.external.qt')"
156 have['rpy2'] = test_for('rpy2')
156 have['rpy2'] = test_for('rpy2')
157 have['sqlite3'] = test_for('sqlite3')
157 have['sqlite3'] = test_for('sqlite3')
158 have['cython'] = test_for('Cython')
158 have['cython'] = test_for('Cython')
159 have['oct2py'] = test_for('oct2py')
159 have['tornado'] = test_for('tornado.version_info', (2,1,0), callback=None)
160 have['tornado'] = test_for('tornado.version_info', (2,1,0), callback=None)
160 have['wx'] = test_for('wx')
161 have['wx'] = test_for('wx')
161 have['wx.aui'] = test_for('wx.aui')
162 have['wx.aui'] = test_for('wx.aui')
@@ -278,6 +279,10 b' def make_exclude():'
278 exclusions.extend([ipjoin('extensions', 'cythonmagic')])
279 exclusions.extend([ipjoin('extensions', 'cythonmagic')])
279 exclusions.extend([ipjoin('extensions', 'tests', 'test_cythonmagic')])
280 exclusions.extend([ipjoin('extensions', 'tests', 'test_cythonmagic')])
280
281
282 if not have['oct2py']:
283 exclusions.extend([ipjoin('extensions', 'octavemagic')])
284 exclusions.extend([ipjoin('extensions', 'tests', 'test_octavemagic')])
285
281 if not have['tornado']:
286 if not have['tornado']:
282 exclusions.append(ipjoin('frontend', 'html'))
287 exclusions.append(ipjoin('frontend', 'html'))
283
288
General Comments 0
You need to be logged in to leave comments. Login now