##// END OF EJS Templates
Merge pull request #2076 from fperez/exclude-static-tests...
Min RK -
r7802:70ea9a89 merge
parent child Browse files
Show More
@@ -232,6 +232,11 b' def make_exclude():'
232 ipjoin('lib', 'inputhook'),
232 ipjoin('lib', 'inputhook'),
233 # Config files aren't really importable stand-alone
233 # Config files aren't really importable stand-alone
234 ipjoin('config', 'profile'),
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 if not have['sqlite3']:
241 if not have['sqlite3']:
237 exclusions.append(ipjoin('core', 'tests', 'test_history'))
242 exclusions.append(ipjoin('core', 'tests', 'test_history'))
General Comments 0
You need to be logged in to leave comments. Login now