Skip to content

Commit f027569

Browse files
committed
Attempt using ipykernel prerelease
1 parent 706f61e commit f027569

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: Install dependencies
5454
run: |
5555
pip install --upgrade setuptools pip
56-
pip install --upgrade --upgrade-strategy eager -e .[test] pytest-cov codecov 'coverage<5'
56+
pip install --upgrade --upgrade-strategy eager --pre -e .[test] pytest-cov codecov 'coverage<5'
5757
pip freeze
5858
- name: Check types
5959
run: mypy jupyter_client/manager.py jupyter_client/multikernelmanager.py jupyter_client/client.py jupyter_client/blocking/client.py jupyter_client/asynchronous/client.py jupyter_client/channels.py jupyter_client/session.py jupyter_client/adapter.py jupyter_client/connect.py jupyter_client/consoleapp.py jupyter_client/jsonutil.py jupyter_client/kernelapp.py jupyter_client/launcher.py

jupyter_client/tests/test_client.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,10 @@ def test_comm_info(self):
8181

8282
def test_shutdown(self):
8383
kc = self.kc
84-
msg_id = kc.shutdown()
85-
self.assertIsInstance(msg_id, str)
8684
reply = kc.shutdown(reply=True, timeout=TIMEOUT)
8785
self._check_reply("shutdown", reply)
86+
87+
def test_shutdown_id(self):
88+
kc = self.kc
89+
msg_id = kc.shutdown()
90+
self.assertIsInstance(msg_id, str)

0 commit comments

Comments
 (0)