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