You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Between 6.1.6 and 6.1.8, there appears to be a regression which causes the ipykernel test suite (specifically, test_kernel::InProcessKernelTests) to hang indefinitely.
# ipykernel 5.4.2, jupyter_client 6.1.8 (same result with 6.1.11)
python3 -m pytest -v
=============================================== test session starts ================================================
platform linux -- Python 3.8.5, pytest-6.2.1, py-1.10.0, pluggy-0.13.1 -- /tmp/venv/lib/python3.8/site-packages/ipykernel/../../../../bin/python
cachedir: .pytest_cache
rootdir: /tmp/venv/lib/python3.8/site-packages/ipykernel
plugins: cov-2.10.1, flaky-3.7.0
collected 112 items
inprocess/tests/test_kernel.py::InProcessKernelTestCase::test_getpass_stream
# hangs here
The testsuite runs normally with jupyter_client pinned to 6.1.6.
(Found by debian autopkgtests while trying to update 6.1.6 -> 6.1.11)
The text was updated successfully, but these errors were encountered:
if shell:
self.shell_channel.start()
self.kernel_info()
was changed to
if shell:
self.shell_channel.start()
Restoring the self.kernel_info() seems to make the test above work again (although given the commit message describing reworking, I don't know whether this is ultimately a regression in jupyter_client or a bug in ipykernel)
Between 6.1.6 and 6.1.8, there appears to be a regression which causes the
ipykernel
test suite (specifically,test_kernel::InProcessKernelTests
) to hang indefinitely.The testsuite runs normally with
jupyter_client
pinned to 6.1.6.(Found by debian autopkgtests while trying to update 6.1.6 -> 6.1.11)
The text was updated successfully, but these errors were encountered: