##// END OF EJS Templates
Skip notebook 'static' dir in test suite....
Fernando Perez -
Show More
@@ -232,6 +232,11 b' def make_exclude():'
232 232 ipjoin('lib', 'inputhook'),
233 233 # Config files aren't really importable stand-alone
234 234 ipjoin('config', 'profile'),
235 # The notebook 'static' directory contains JS, css and other
236 # files for web serving. Occasionally projects may put a .py
237 # file in there (MathJax ships a conf.py), so we might as
238 # well play it safe and skip the whole thing.
239 ipjoin('frontend', 'html', 'notebook', 'static')
235 240 ]
236 241 if not have['sqlite3']:
237 242 exclusions.append(ipjoin('core', 'tests', 'test_history'))
General Comments 0
You need to be logged in to leave comments. Login now