From db1ff54ec35203c74fd48fd988d887fd1216e8ea Mon Sep 17 00:00:00 2001 From: Min RK Date: Thu, 19 Sep 2013 15:25:00 -0700 Subject: [PATCH] add nbconvert serve exclusions without tornado --- IPython/testing/iptest.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index 1b125394a..b20e31529 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -293,6 +293,9 @@ sec.requires('pygments', 'jinja2', 'sphinx') # Executing the config files with iptest would cause an exception. sec.exclude('tests.files') sec.exclude('exporters.tests.files') +if not have['tornado']: + sec.exclude('nbconvert.post_processors.serve') + sec.exclude('nbconvert.post_processors.tests.test_serve') #----------------------------------------------------------------------------- # Functions and classes