From 26e8363d46acbffaf42e6c72a7324d9103fccc78 Mon Sep 17 00:00:00 2001 From: Brian Granger Date: Wed, 30 May 2012 22:01:34 -0700 Subject: [PATCH] More code review changes: * Added extension to the Sphinx docs. * Fixed unicode issues. --- IPython/testing/iptest.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index 6bbde3657..4af2e93cd 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -148,6 +148,7 @@ have['wx'] = test_for('wx') have['wx.aui'] = test_for('wx.aui') have['qt'] = test_for('IPython.external.qt') have['sqlite3'] = test_for('sqlite3') +have['cython'] = test_for('Cython') have['tornado'] = test_for('tornado.version_info', (2,1,0), callback=None) @@ -268,6 +269,9 @@ def make_exclude(): ipjoin('zmq', 'pylab'), ]) + if not have['cython']: + exclusions.extend([ipjoin('extensions', 'cythonmagic')]) + if not have['tornado']: exclusions.append(ipjoin('frontend', 'html'))