Show More
@@ -162,6 +162,7 b" have['sqlite3'] = test_for('sqlite3')" | |||||
162 | have['cython'] = test_for('Cython') |
|
162 | have['cython'] = test_for('Cython') | |
163 | have['oct2py'] = test_for('oct2py') |
|
163 | have['oct2py'] = test_for('oct2py') | |
164 | have['tornado'] = test_for('tornado.version_info', (2,1,0), callback=None) |
|
164 | have['tornado'] = test_for('tornado.version_info', (2,1,0), callback=None) | |
|
165 | have['jinja2'] = test_for('jinja2') | |||
165 | have['wx'] = test_for('wx') |
|
166 | have['wx'] = test_for('wx') | |
166 | have['wx.aui'] = test_for('wx.aui') |
|
167 | have['wx.aui'] = test_for('wx.aui') | |
167 | have['azure'] = test_for('azure') |
|
168 | have['azure'] = test_for('azure') | |
@@ -300,6 +301,9 b' def make_exclude():' | |||||
300 | if not have['tornado']: |
|
301 | if not have['tornado']: | |
301 | exclusions.append(ipjoin('frontend', 'html')) |
|
302 | exclusions.append(ipjoin('frontend', 'html')) | |
302 |
|
303 | |||
|
304 | if not have['jinja2']: | |||
|
305 | exclusions.append(ipjoin('frontend', 'html', 'notebook', 'notebookapp')) | |||
|
306 | ||||
303 | if not have['rpy2'] or not have['numpy']: |
|
307 | if not have['rpy2'] or not have['numpy']: | |
304 | exclusions.append(ipjoin('extensions', 'rmagic')) |
|
308 | exclusions.append(ipjoin('extensions', 'rmagic')) | |
305 | exclusions.append(ipjoin('extensions', 'tests', 'test_rmagic')) |
|
309 | exclusions.append(ipjoin('extensions', 'tests', 'test_rmagic')) |
General Comments 0
You need to be logged in to leave comments.
Login now