##// END OF EJS Templates
Shut down kernels in parallel...
Shut down kernels in parallel When stopping the notebook server, it currently sends a shutdown request to each kernel and then waits for the process to finish. This can be slow if you have several kernels running. This makes it issues all the shutdown requests before waiting on the processes, so shutdown happens in parallel. KernelManager (and MultiKernelManager) gain three new public API methods to allow this: * request_shutdown (promoted from a private method) * wait_shutdown (refactored out of shutdown_kernel) * cleanup (refactored out of shutdown_kernel)

File last commit:

r12400:695d4711
r16510:633371e5
Show More
test_launcher.py
58 lines | 2.0 KiB | text/x-python | PythonLexer
MinRK
Split swallow_argv into standalone function in lib.kernel...
r5620 """Tests for kernel utility functions
Authors
-------
* MinRK
"""
#-----------------------------------------------------------------------------
# Copyright (c) 2011, the IPython Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
# Third-party imports
import nose.tools as nt
# Our own imports
MinRK
test IPython.kernel
r9356 from IPython.kernel.launcher import swallow_argv
MinRK
Split swallow_argv into standalone function in lib.kernel...
r5620
#-----------------------------------------------------------------------------
# Classes and functions
#-----------------------------------------------------------------------------
def test_swallow_argv():
tests = [
# expected , argv , aliases, flags
(['-a', '5'], ['-a', '5'], None, None),
(['5'], ['-a', '5'], None, ['a']),
([], ['-a', '5'], ['a'], None),
([], ['-a', '5'], ['a'], ['a']),
([], ['--foo'], None, ['foo']),
MinRK
update swallow_argv test with prefix-matching
r10427 ([], ['--foo'], ['foobar'], []),
MinRK
Split swallow_argv into standalone function in lib.kernel...
r5620 ([], ['--foo', '5'], ['foo'], []),
([], ['--foo=5'], ['foo'], []),
(['--foo=5'], ['--foo=5'], [], ['foo']),
(['5'], ['--foo', '5'], [], ['foo']),
(['bar'], ['--foo', '5', 'bar'], ['foo'], ['foo']),
(['bar'], ['--foo=5', 'bar'], ['foo'], ['foo']),
(['5','bar'], ['--foo', '5', 'bar'], None, ['foo']),
(['bar'], ['--foo', '5', 'bar'], ['foo'], None),
(['bar'], ['--foo=5', 'bar'], ['foo'], None),
]
for expected, argv, aliases, flags in tests:
MinRK
test IPython.kernel
r9356 stripped = swallow_argv(argv, aliases=aliases, flags=flags)
MinRK
Split swallow_argv into standalone function in lib.kernel...
r5620 message = '\n'.join(['',
"argv: %r" % argv,
"aliases: %r" % aliases,
"flags : %r" % flags,
"expected : %r" % expected,
"returned : %r" % stripped,
])
Thomas Kluyver
Remove uses of @parametric decorator
r12374 nt.assert_equal(expected, stripped, message)
MinRK
Split swallow_argv into standalone function in lib.kernel...
r5620