From d025cb6176756efacb7adc3e8222a53a90b4d810 Mon Sep 17 00:00:00 2001 From: John Stowers Date: Sat, 26 Jul 2014 20:11:25 +0200 Subject: [PATCH] exclude gtk3 gui modules from tests --- IPython/testing/iptest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index 3cbb78068..b5555a26b 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -242,6 +242,7 @@ sec.requires('zmq') sec.exclude('inprocess') # importing gtk sets the default encoding, which we want to avoid sec.exclude('zmq.gui.gtkembed') +sec.exclude('zmq.gui.gtk3embed') if not have['matplotlib']: sec.exclude('zmq.pylab')