From 3ac79da49cd2f8efb99d49ebc5f31b7680836cc9 Mon Sep 17 00:00:00 2001 From: MinRK Date: Thu, 31 May 2012 10:06:13 -0700 Subject: [PATCH] add missing cython exclusion in iptest --- IPython/testing/iptest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index 757b21569..690d38839 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -272,6 +272,7 @@ def make_exclude(): if not have['cython']: exclusions.extend([ipjoin('extensions', 'cythonmagic')]) + exclusions.extend([ipjoin('extensions', 'tests', 'test_cythonmagic')]) if not have['tornado']: exclusions.append(ipjoin('frontend', 'html'))