From 6abcf90d4e7b3f1ccd8cfeaf6c83da67bc88c3aa Mon Sep 17 00:00:00 2001 From: MinRK Date: Fri, 16 Aug 2013 19:34:01 -0700 Subject: [PATCH] add nbconvert serve exclusions without tornado --- IPython/testing/iptest.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index 2a20d3cfa..2fbb84854 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -293,6 +293,8 @@ def make_exclude(): if not have['tornado']: exclusions.append(ipjoin('html')) + exclusions.append(ipjoin('nbconvert', 'post_processors', 'serve')) + exclusions.append(ipjoin('nbconvert', 'post_processors', 'tests', 'test_serve')) if not have['jinja2']: exclusions.append(ipjoin('html', 'notebookapp'))