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.
pull/1695/head
Thomas Kluyver 10 years ago
parent b9292d3139
commit bf66ed4b4b

@ -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

Loading…
Cancel
Save