Show More
@@ -4,6 +4,8 from subprocess import PIPE | |||
|
4 | 4 | import time |
|
5 | 5 | from unittest import TestCase |
|
6 | 6 | |
|
7 | from IPython.testing import decorators as dec | |
|
8 | ||
|
7 | 9 | from IPython.config.loader import Config |
|
8 | 10 | from IPython.frontend.html.notebook.kernelmanager import MultiKernelManager |
|
9 | 11 | from IPython.zmq.kernelmanager import KernelManager |
@@ -62,6 +64,7 class TestKernelManager(TestCase): | |||
|
62 | 64 | km = self._get_tcp_km() |
|
63 | 65 | self._run_lifecycle(km) |
|
64 | 66 | |
|
67 | @dec.skip_win32 | |
|
65 | 68 | def test_tcp_cinfo(self): |
|
66 | 69 | km = self._get_tcp_km() |
|
67 | 70 | self._run_cinfo(km, 'tcp', '127.0.0.1') |
@@ -4,6 +4,8 from subprocess import PIPE | |||
|
4 | 4 | import time |
|
5 | 5 | from unittest import TestCase |
|
6 | 6 | |
|
7 | from IPython.testing import decorators as dec | |
|
8 | ||
|
7 | 9 | from IPython.config.loader import Config |
|
8 | 10 | from IPython.zmq.kernelmanager import KernelManager |
|
9 | 11 | |
@@ -39,6 +41,7 class TestKernelManager(TestCase): | |||
|
39 | 41 | km = self._get_tcp_km() |
|
40 | 42 | self._run_lifecycle(km) |
|
41 | 43 | |
|
44 | @dec.skip_win32 | |
|
42 | 45 | def testipc_lifecycle(self): |
|
43 | 46 | km = self._get_ipc_km() |
|
44 | 47 | self._run_lifecycle(km) |
General Comments 0
You need to be logged in to leave comments.
Login now