From bf66ed4b4b972811170795a276bd463542ebad26 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Sat, 20 Aug 2016 18:20:16 +0100 Subject: [PATCH] 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. --- setupbase.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setupbase.py b/setupbase.py index 5b661a17b..5c837acb1 100755 --- a/setupbase.py +++ b/setupbase.py @@ -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