Show More
@@ -4,13 +4,14 b'' | |||
|
4 | 4 | # Distributed under the terms of the Modified BSD License. |
|
5 | 5 | |
|
6 | 6 | import os |
|
7 | from textwrap import dedent | |
|
7 | 8 | |
|
8 | 9 | try: |
|
9 | 10 | from queue import Empty # Py 3 |
|
10 | 11 | except ImportError: |
|
11 | 12 | from Queue import Empty # Py 2 |
|
12 | 13 | |
|
13 | from IPython.utils.traitlets import List, Unicode | |
|
14 | from IPython.utils.traitlets import List, Unicode, Bool | |
|
14 | 15 | |
|
15 | 16 | from IPython.nbformat.v4 import output_from_msg |
|
16 | 17 | from .base import Preprocessor |
@@ -25,6 +26,17 b' class ExecutePreprocessor(Preprocessor):' | |||
|
25 | 26 | timeout = Integer(30, config=True, |
|
26 | 27 | help="The time to wait (in seconds) for output from executions." |
|
27 | 28 | ) |
|
29 | ||
|
30 | interrupt_on_timeout = Bool( | |
|
31 | False, config=True, | |
|
32 | help=dedent( | |
|
33 | """ | |
|
34 | If execution of a cell times out, interrupt the kernel and | |
|
35 | continue executing other cells rather than throwing an error and | |
|
36 | stopping. | |
|
37 | """ | |
|
38 | ) | |
|
39 | ) | |
|
28 | 40 | |
|
29 | 41 | extra_arguments = List(Unicode) |
|
30 | 42 | |
@@ -33,16 +45,22 b' class ExecutePreprocessor(Preprocessor):' | |||
|
33 | 45 | if path == '': |
|
34 | 46 | path = None |
|
35 | 47 | |
|
36 |
from IPython.kernel import |
|
|
48 | from IPython.kernel.manager import start_new_kernel | |
|
37 | 49 | kernel_name = nb.metadata.get('kernelspec', {}).get('name', 'python') |
|
38 | 50 | self.log.info("Executing notebook with kernel: %s" % kernel_name) |
|
39 | with run_kernel(kernel_name=kernel_name, | |
|
40 | extra_arguments=self.extra_arguments, | |
|
41 | stderr=open(os.devnull, 'w'), | |
|
42 | cwd=path) as kc: | |
|
43 |
|
|
|
44 |
|
|
|
51 | self.km, self.kc = start_new_kernel( | |
|
52 | kernel_name=kernel_name, | |
|
53 | extra_arguments=self.extra_arguments, | |
|
54 | stderr=open(os.devnull, 'w'), | |
|
55 | cwd=path) | |
|
56 | self.kc.allow_stdin = False | |
|
57 | ||
|
58 | try: | |
|
45 | 59 | nb, resources = super(ExecutePreprocessor, self).preprocess(nb, resources) |
|
60 | finally: | |
|
61 | self.kc.stop_channels() | |
|
62 | self.km.shutdown_kernel(now=True) | |
|
63 | ||
|
46 | 64 | return nb, resources |
|
47 | 65 | |
|
48 | 66 | def preprocess_cell(self, cell, resources, cell_index): |
@@ -69,7 +87,13 b' class ExecutePreprocessor(Preprocessor):' | |||
|
69 | 87 | msg = self.kc.shell_channel.get_msg(timeout=self.timeout) |
|
70 | 88 | except Empty: |
|
71 | 89 | self.log.error("Timeout waiting for execute reply") |
|
72 | raise | |
|
90 | if self.interrupt_on_timeout: | |
|
91 | self.log.error("Interrupting kernel") | |
|
92 | self.km.interrupt_kernel() | |
|
93 | break | |
|
94 | else: | |
|
95 | raise | |
|
96 | ||
|
73 | 97 | if msg['parent_header'].get('msg_id') == msg_id: |
|
74 | 98 | break |
|
75 | 99 | else: |
General Comments 0
You need to be logged in to leave comments.
Login now