Show More
@@ -233,6 +233,7 b' def make_exclude():' | |||
|
233 | 233 | # We do this unconditionally, so that the test suite doesn't import |
|
234 | 234 | # gtk, changing the default encoding and masking some unicode bugs. |
|
235 | 235 | exclusions.append(ipjoin('lib', 'inputhookgtk')) |
|
236 | exclusions.append(ipjoin('zmq', 'gui', 'gtkembed')) | |
|
236 | 237 | |
|
237 | 238 | # These have to be skipped on win32 because the use echo, rm, cd, etc. |
|
238 | 239 | # See ticket https://github.com/ipython/ipython/issues/87 |
@@ -263,7 +264,9 b' def make_exclude():' | |||
|
263 | 264 | |
|
264 | 265 | if not have['matplotlib']: |
|
265 | 266 | exclusions.extend([ipjoin('core', 'pylabtools'), |
|
266 |
ipjoin('core', 'tests', 'test_pylabtools') |
|
|
267 | ipjoin('core', 'tests', 'test_pylabtools'), | |
|
268 | ipjoin('zmq', 'pylab'), | |
|
269 | ]) | |
|
267 | 270 | |
|
268 | 271 | if not have['tornado']: |
|
269 | 272 | exclusions.append(ipjoin('frontend', 'html')) |
@@ -385,6 +388,7 b' def make_runners():' | |||
|
385 | 388 | 'scripts', 'testing', 'utils', 'nbformat' ] |
|
386 | 389 | |
|
387 | 390 | if have['zmq']: |
|
391 | nose_pkg_names.append('zmq') | |
|
388 | 392 | nose_pkg_names.append('parallel') |
|
389 | 393 | |
|
390 | 394 | # For debugging this code, only load quick stuff |
General Comments 0
You need to be logged in to leave comments.
Login now