Fixing imports for frontend tests.

Brian E. Granger 13 years ago
parent abeed98476
commit d2100bdc06

@ -63,10 +63,10 @@ from tornado import web
# Our own libraries
from IPython.frontend.html.notebook import DEFAULT_STATIC_FILES_PATH
from .kernels.kernelmanager import MappingKernelManager
from .notebooks.nbmanager import NotebookManager
from .notebooks.filenbmanager import FileNotebookManager
from .clusters.clustermanager import ClusterManager
from .services.kernels.kernelmanager import MappingKernelManager
from .services.notebooks.nbmanager import NotebookManager
from .services.notebooks.filenbmanager import FileNotebookManager
from .services.clusters.clustermanager import ClusterManager
from .base.handlers import AuthenticatedFileHandler, FileFindHandler

@ -303,7 +303,7 @@ def make_exclude():
exclusions.append(ipjoin('extensions', 'tests', 'test_rmagic'))
if not have['azure']:
exclusions.append(ipjoin('frontend', 'html', 'notebook', 'notebooks', 'azurenbmanager'))
exclusions.append(ipjoin('frontend', 'html', 'notebook', 'services', 'notebooks', 'azurenbmanager'))
# This is needed for the reg-exp to match on win32 in the ipdoctest plugin.
if sys.platform == 'win32':

Loading…
Cancel
Save