##// END OF EJS Templates
Don't load html.terminal for tests if terminado not installed
Thomas Kluyver -
Show More
@@ -137,6 +137,7 b" have['mistune'] = test_for('mistune')"
137 have['requests'] = test_for('requests')
137 have['requests'] = test_for('requests')
138 have['sphinx'] = test_for('sphinx')
138 have['sphinx'] = test_for('sphinx')
139 have['jsonschema'] = test_for('jsonschema')
139 have['jsonschema'] = test_for('jsonschema')
140 have['terminado'] = test_for('terminado')
140 have['casperjs'] = is_cmd_found('casperjs')
141 have['casperjs'] = is_cmd_found('casperjs')
141 have['phantomjs'] = is_cmd_found('phantomjs')
142 have['phantomjs'] = is_cmd_found('phantomjs')
142 have['slimerjs'] = is_cmd_found('slimerjs')
143 have['slimerjs'] = is_cmd_found('slimerjs')
@@ -264,6 +265,8 b" if not have['jinja2']:"
264 sec.exclude('notebookapp')
265 sec.exclude('notebookapp')
265 if not have['pygments'] or not have['jinja2']:
266 if not have['pygments'] or not have['jinja2']:
266 sec.exclude('nbconvert')
267 sec.exclude('nbconvert')
268 if not have['terminado']:
269 sec.exclude('terminal')
267
270
268 # config:
271 # config:
269 # Config files aren't really importable stand-alone
272 # Config files aren't really importable stand-alone
General Comments 0
You need to be logged in to leave comments. Login now