From 983b3a7bc8180c5ba714a8e67695a1d31d32f40d Mon Sep 17 00:00:00 2001 From: Fernando Perez Date: Sun, 27 Nov 2011 00:28:26 -0800 Subject: [PATCH] Fix inline backend logic and avoid tests if mpl not available. --- IPython/testing/iptest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index e4fddb6f3..de180c23a 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -238,8 +238,8 @@ def make_exclude(): exclusions.append(ipjoin('parallel', 'tests', 'test_mongodb')) if not have['matplotlib']: - exclusions.extend([ipjoin('lib', 'pylabtools'), - ipjoin('lib', 'tests', 'test_pylabtools')]) + exclusions.extend([ipjoin('core', 'pylabtools'), + ipjoin('core', 'tests', 'test_pylabtools')]) if not have['tornado']: exclusions.append(ipjoin('frontend', 'html'))