From bf520884ba83e751e5abdec669c08e12423631e1 2012-04-18 22:32:43 From: MinRK Date: 2012-04-18 22:32:43 Subject: [PATCH] include IPython.zmq in iptest groups --- diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index 8b42500..6bbde36 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -233,6 +233,7 @@ def make_exclude(): # We do this unconditionally, so that the test suite doesn't import # gtk, changing the default encoding and masking some unicode bugs. exclusions.append(ipjoin('lib', 'inputhookgtk')) + exclusions.append(ipjoin('zmq', 'gui', 'gtkembed')) # These have to be skipped on win32 because the use echo, rm, cd, etc. # See ticket https://github.com/ipython/ipython/issues/87 @@ -263,7 +264,9 @@ def make_exclude(): if not have['matplotlib']: exclusions.extend([ipjoin('core', 'pylabtools'), - ipjoin('core', 'tests', 'test_pylabtools')]) + ipjoin('core', 'tests', 'test_pylabtools'), + ipjoin('zmq', 'pylab'), + ]) if not have['tornado']: exclusions.append(ipjoin('frontend', 'html')) @@ -385,6 +388,7 @@ def make_runners(): 'scripts', 'testing', 'utils', 'nbformat' ] if have['zmq']: + nose_pkg_names.append('zmq') nose_pkg_names.append('parallel') # For debugging this code, only load quick stuff