Skip to content

Commit ec7081f

Browse files
committed
Increase timeout for Julia in test_session too
1 parent 053f2a3 commit ec7081f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

python_packages/jupyter_lsp/jupyter_lsp/tests/test_session.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,10 @@ async def test_start_known(known_server, handlers, jsonrpc_init_msg):
3939
await ws_handler.on_message(jsonrpc_init_msg)
4040

4141
try:
42-
await asyncio.wait_for(ws_handler._messages_wrote.get(), 20)
42+
await asyncio.wait_for(
43+
ws_handler._messages_wrote.get(),
44+
60 if known_server == "julia-language-server" else 20,
45+
)
4346
ws_handler._messages_wrote.task_done()
4447
finally:
4548
ws_handler.on_close()

0 commit comments

Comments
 (0)