From b9ac9cc5965596ec0b021c7515fc2547d5c08ade Mon Sep 17 00:00:00 2001 From: massy-o Date: Thu, 14 May 2026 16:58:48 +0900 Subject: [PATCH] Add timeout to MNIST data download --- tests/integration/slices/numpy_mnist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/slices/numpy_mnist.py b/tests/integration/slices/numpy_mnist.py index 486ea9f68..6258d9151 100644 --- a/tests/integration/slices/numpy_mnist.py +++ b/tests/integration/slices/numpy_mnist.py @@ -15,7 +15,7 @@ headers = { "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:10.0) Gecko/20100101 Firefox/10.0" } -request_opts = {"headers": headers, "params": {"raw": "true"}} +request_opts = {"headers": headers, "params": {"raw": "true"}, "timeout": 30} import os import requests