##// END OF EJS Templates
Fixing imports for frontend tests.
Brian E. Granger -
Show More
1 NO CONTENT: new file 100644
1 NO CONTENT: new file 100644
@@ -63,10 +63,10 from tornado import web
63 63 # Our own libraries
64 64 from IPython.frontend.html.notebook import DEFAULT_STATIC_FILES_PATH
65 65
66 from .kernels.kernelmanager import MappingKernelManager
67 from .notebooks.nbmanager import NotebookManager
68 from .notebooks.filenbmanager import FileNotebookManager
69 from .clusters.clustermanager import ClusterManager
66 from .services.kernels.kernelmanager import MappingKernelManager
67 from .services.notebooks.nbmanager import NotebookManager
68 from .services.notebooks.filenbmanager import FileNotebookManager
69 from .services.clusters.clustermanager import ClusterManager
70 70
71 71 from .base.handlers import AuthenticatedFileHandler, FileFindHandler
72 72
@@ -303,7 +303,7 def make_exclude():
303 303 exclusions.append(ipjoin('extensions', 'tests', 'test_rmagic'))
304 304
305 305 if not have['azure']:
306 exclusions.append(ipjoin('frontend', 'html', 'notebook', 'notebooks', 'azurenbmanager'))
306 exclusions.append(ipjoin('frontend', 'html', 'notebook', 'services', 'notebooks', 'azurenbmanager'))
307 307
308 308 # This is needed for the reg-exp to match on win32 in the ipdoctest plugin.
309 309 if sys.platform == 'win32':
General Comments 0
You need to be logged in to leave comments. Login now