From be64ca32b137cb558ba6ad555e82a1c70765969b Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Sun, 18 Feb 2024 11:59:09 -0600 Subject: [PATCH] increase timeout --- tests/test_notebook_http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_notebook_http.py b/tests/test_notebook_http.py index e4df4af..ef63b7b 100644 --- a/tests/test_notebook_http.py +++ b/tests/test_notebook_http.py @@ -264,7 +264,7 @@ async def test_should_cycle_through_kernels(self, jp_fetch, jp_argv): response.body == b"hola {}\n" ), "Unexpected body in response to GET after performing PUT." - @pytest.mark.timeout(10) + @pytest.mark.timeout(20) async def test_concurrent_request_should_not_be_blocked(self, jp_fetch, jp_argv): """Concurrent requests should not be blocked""" response_long_running = jp_fetch("sleep", "6", method="GET")