From 17ffaf0f7a8b02b59e8d7824bd9702820dc48091 2013-02-07 17:03:42 From: MinRK Date: 2013-02-07 17:03:42 Subject: [PATCH] exclude fabfile from tests closes #2890 --- diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index 4680305..467d5e6 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -230,7 +230,8 @@ def make_exclude(): # files for web serving. Occasionally projects may put a .py # file in there (MathJax ships a conf.py), so we might as # well play it safe and skip the whole thing. - ipjoin('frontend', 'html', 'notebook', 'static') + ipjoin('frontend', 'html', 'notebook', 'static'), + ipjoin('frontend', 'html', 'notebook', 'fabfile'), ] if not have['sqlite3']: exclusions.append(ipjoin('core', 'tests', 'test_history'))