Include bundler test files in package_data

This was causing a test failure on Jenkins. It only shows up if you
install the package (not a dev install) and test against the installed
version.
This commit is contained in:
Thomas Kluyver 2016-08-20 18:20:16 +01:00
parent b9292d3139
commit bf66ed4b4b

View File

@ -198,6 +198,7 @@ def find_package_data():
package_data = {
'notebook' : ['templates/*'] + static_data,
'notebook.tests' : js_tests,
'notebook.bundler.tests': ['resources/*', 'resources/*/*', 'resources/*/*/.*'],
}
return package_data