diff --git a/tests/test_nbconvertapp.py b/tests/test_nbconvertapp.py index 764a79033..f181d9539 100644 --- a/tests/test_nbconvertapp.py +++ b/tests/test_nbconvertapp.py @@ -77,6 +77,7 @@ def test_convert_full_qualified_name(self): """ with self.create_temp_cwd(): self.copy_files_to(["notebook*.ipynb"], "subdir") + self.copy_files_to(["../fake_exporters.py"], "tests") self.nbconvert( "--to tests.fake_exporters.MyExporter --log-level 0 " + os.path.join("subdir", "*.ipynb") @@ -177,6 +178,7 @@ def test_pdf(self): def test_post_processor(self): """Do post processors work?""" with self.create_temp_cwd(["notebook1.ipynb"]): + self.copy_files_to(["../*.py"], "tests") out, err = self.nbconvert( "--log-level 0 --to python notebook1 --post tests.test_nbconvertapp.DummyPost" )