##// END OF EJS Templates
html and js tests require sqlite3 (session manager)
MinRK -
Show More
@@ -268,7 +268,7 b" test_sections['qt'].requires('zmq', 'qt', 'pygments')"
268
268
269 # html:
269 # html:
270 sec = test_sections['html']
270 sec = test_sections['html']
271 sec.requires('zmq', 'tornado', 'requests')
271 sec.requires('zmq', 'tornado', 'requests', 'sqlite3')
272 # The notebook 'static' directory contains JS, css and other
272 # The notebook 'static' directory contains JS, css and other
273 # files for web serving. Occasionally projects may put a .py
273 # files for web serving. Occasionally projects may put a .py
274 # file in there (MathJax ships a conf.py), so we might as
274 # file in there (MathJax ships a conf.py), so we might as
@@ -221,7 +221,7 b' class JSController(TestController):'
221
221
222 @property
222 @property
223 def will_run(self):
223 def will_run(self):
224 return all(have[a] for a in ['zmq', 'tornado', 'jinja2', 'casperjs'])
224 return all(have[a] for a in ['zmq', 'tornado', 'jinja2', 'casperjs', 'sqlite3'])
225
225
226 def _init_server(self):
226 def _init_server(self):
227 "Start the notebook server in a separate process"
227 "Start the notebook server in a separate process"
General Comments 0
You need to be logged in to leave comments. Login now