mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-24 12:05:22 +08:00
html and js tests require sqlite3 (session manager)
This commit is contained in:
parent
386b08634c
commit
a16acb246d
@ -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
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user