html and js tests require sqlite3 (session manager)

This commit is contained in:
MinRK 2014-03-12 15:55:06 -07:00
parent 386b08634c
commit a16acb246d
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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"