Show More
@@ -146,8 +146,6 b" have['cython'] = test_for('Cython')" | |||
|
146 | 146 | have['oct2py'] = test_for('oct2py') |
|
147 | 147 | have['tornado'] = test_for('tornado.version_info', (3,1,0), callback=None) |
|
148 | 148 | have['jinja2'] = test_for('jinja2') |
|
149 | have['wx'] = test_for('wx') | |
|
150 | have['wx.aui'] = test_for('wx.aui') | |
|
151 | 149 | have['azure'] = test_for('azure') |
|
152 | 150 | have['requests'] = test_for('requests') |
|
153 | 151 | have['sphinx'] = test_for('sphinx') |
@@ -203,8 +201,6 b" if not have['matplotlib']:" | |||
|
203 | 201 | |
|
204 | 202 | # lib: |
|
205 | 203 | sec = test_sections['lib'] |
|
206 | if not have['wx']: | |
|
207 | sec.exclude('inputhookwx') | |
|
208 | 204 | if not have['pexpect']: |
|
209 | 205 | sec.exclude('irunner') |
|
210 | 206 | sec.exclude('tests.test_irunner') |
@@ -213,6 +209,9 b" if not have['zmq']:" | |||
|
213 | 209 | # We do this unconditionally, so that the test suite doesn't import |
|
214 | 210 | # gtk, changing the default encoding and masking some unicode bugs. |
|
215 | 211 | sec.exclude('inputhookgtk') |
|
212 | # We also do this unconditionally, because wx can interfere with Unix signals. | |
|
213 | # There are currently no tests for it anyway. | |
|
214 | sec.exclude('inputhookwx') | |
|
216 | 215 | # Testing inputhook will need a lot of thought, to figure out |
|
217 | 216 | # how to have tests that don't lock up with the gui event |
|
218 | 217 | # loops in the picture |
General Comments 0
You need to be logged in to leave comments.
Login now