From a16acb246de95a25f2cb2c6b7e2b334db9c43faa Mon Sep 17 00:00:00 2001 From: MinRK Date: Wed, 12 Mar 2014 15:55:06 -0700 Subject: [PATCH] html and js tests require sqlite3 (session manager) --- IPython/testing/iptest.py | 2 +- IPython/testing/iptestcontroller.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index ba1442f81..45d2c78eb 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -268,7 +268,7 @@ test_sections['qt'].requires('zmq', 'qt', 'pygments') # html: sec = test_sections['html'] -sec.requires('zmq', 'tornado', 'requests') +sec.requires('zmq', 'tornado', 'requests', 'sqlite3') # The notebook 'static' directory contains JS, css and other # files for web serving. Occasionally projects may put a .py # file in there (MathJax ships a conf.py), so we might as diff --git a/IPython/testing/iptestcontroller.py b/IPython/testing/iptestcontroller.py index 97420526e..e819e12e9 100644 --- a/IPython/testing/iptestcontroller.py +++ b/IPython/testing/iptestcontroller.py @@ -221,7 +221,7 @@ class JSController(TestController): @property def will_run(self): - return all(have[a] for a in ['zmq', 'tornado', 'jinja2', 'casperjs']) + return all(have[a] for a in ['zmq', 'tornado', 'jinja2', 'casperjs', 'sqlite3']) def _init_server(self): "Start the notebook server in a separate process"