Skip to content

Commit 7d6f0b8

Browse files
committed
🧑‍💻 Increase timeout for Python 3.14
1 parent 78817f1 commit 7d6f0b8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_app_bokeh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def doc(data_path: dict[str, object]) -> Generator[Document, object, None]:
227227
p.start()
228228
# wait until server is ready
229229
# Increase timeout for Python 3.14+ to account for stricter multiprocessing
230-
timeout = 30 if sys.version_info >= (3, 14) else 10
230+
timeout = 100 if sys.version_info >= (3, 14) else 10
231231
start = time.time()
232232
url = f"http://127.0.0.1:{main.port}/tileserver/session_id"
233233

0 commit comments

Comments
 (0)