From cc0f439e7fd5cd9259f7ee57ff54168453c68cbd 2011-12-12 19:47:51 From: MinRK Date: 2011-12-12 19:47:51 Subject: [PATCH] update iptest exclusions with recent changes --- diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index de180c2..bc94a3d 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'))