Skip to content

Commit 533ca75

Browse files
committed
Restore test timeouts to original values
1 parent 5bc1985 commit 533ca75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
from jupyter_client import manager
1717
from jupyter_client.blocking.client import BlockingKernelClient
1818

19-
STARTUP_TIMEOUT = 10 if "debugpy" not in sys.modules else 1e6
20-
TIMEOUT = 10 if "debugpy" not in sys.modules else 1e6
19+
STARTUP_TIMEOUT = 60 if "debugpy" not in sys.modules else 1e6
20+
TIMEOUT = 100 if "debugpy" not in sys.modules else 1e6
2121

2222
KM: manager.KernelManager = None # type:ignore
2323
KC: BlockingKernelClient = None # type:ignore

0 commit comments

Comments
 (0)