File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 53
53
- name : Install dependencies
54
54
run : |
55
55
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'
57
57
pip freeze
58
58
- name : Check types
59
59
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
Original file line number Diff line number Diff line change @@ -81,7 +81,10 @@ def test_comm_info(self):
81
81
82
82
def test_shutdown (self ):
83
83
kc = self .kc
84
- msg_id = kc .shutdown ()
85
- self .assertIsInstance (msg_id , str )
86
84
reply = kc .shutdown (reply = True , timeout = TIMEOUT )
87
85
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 )
You can’t perform that action at this time.
0 commit comments