From 88340d682c84ef9d3ceaf001ee9a2af3f679137a Mon Sep 17 00:00:00 2001 From: MinRK Date: Mon, 12 Dec 2011 11:47:51 -0800 Subject: [PATCH] update iptest exclusions with recent changes --- IPython/testing/iptest.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index de180c23a..bc94a3d7d 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -224,11 +224,16 @@ def make_exclude(): if not have['pexpect']: exclusions.extend([ipjoin('scripts', 'irunner'), ipjoin('lib', 'irunner'), - ipjoin('lib', 'tests', 'test_irunner')]) + ipjoin('lib', 'tests', 'test_irunner'), + ipjoin('frontend', 'terminal', 'console'), + ]) if not have['zmq']: exclusions.append(ipjoin('zmq')) exclusions.append(ipjoin('frontend', 'qt')) + exclusions.append(ipjoin('frontend', 'html')) + exclusions.append(ipjoin('frontend', 'consoleapp.py')) + exclusions.append(ipjoin('frontend', 'terminal', 'console')) exclusions.append(ipjoin('parallel')) elif not have['qt']: exclusions.append(ipjoin('frontend', 'qt'))