##// END OF EJS Templates
exclude html nbconvert tests if nbconvert is not importable
MinRK -
Show More
@@ -280,6 +280,8 b" if not have['jinja2']:"
280 280 sec.exclude('notebookapp')
281 281 if not have['azure']:
282 282 sec.exclude('services.notebooks.azurenbmanager')
283 if not have['pygments'] or not have['jinja2']:
284 sec.exclude('nbconvert')
283 285
284 286 # config:
285 287 # Config files aren't really importable stand-alone
@@ -287,7 +289,7 b" test_sections['config'].exclude('profile')"
287 289
288 290 # nbconvert:
289 291 sec = test_sections['nbconvert']
290 sec.requires('pygments', 'jinja2', 'sphinx')
292 sec.requires('pygments', 'jinja2')
291 293 # Exclude nbconvert directories containing config files used to test.
292 294 # Executing the config files with iptest would cause an exception.
293 295 sec.exclude('tests.files')
General Comments 0
You need to be logged in to leave comments. Login now