From 4fcf0df53a456a079c9ebcda2b907c0d6f20c8dc Mon Sep 17 00:00:00 2001 From: Julia Evans Date: Thu, 24 Apr 2014 18:35:38 -0400 Subject: [PATCH] Add preprocessor test inputs to find_package_data() --- setupbase.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/setupbase.py b/setupbase.py index 05548d145..9482b10bf 100644 --- a/setupbase.py +++ b/setupbase.py @@ -185,7 +185,12 @@ def find_package_data(): 'IPython.html.tests' : js_tests, 'IPython.qt.console' : ['resources/icon/*.svg'], 'IPython.nbconvert' : nbconvert_templates + - ['tests/files/*.*', 'exporters/tests/files/*.*'], + [ + 'tests/files/*.*', + 'exporters/tests/files/*.*', + 'preprocessor/tests/input/*.*', + 'preprocessor/tests/expected/*.*', + ], 'IPython.nbconvert.filters' : ['marked.js'], 'IPython.nbformat' : ['tests/*.ipynb','v3/v3.withref.json'] }