From 902e98b05998c9274a7c2f8c3a99bc8669f4a6fe Mon Sep 17 00:00:00 2001 From: Donkie Date: Wed, 7 Aug 2024 15:27:22 +0200 Subject: [PATCH] Increased itest connection timeout --- tests_integration/tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests_integration/tests/conftest.py b/tests_integration/tests/conftest.py index 5805465..4e133da 100644 --- a/tests_integration/tests/conftest.py +++ b/tests_integration/tests/conftest.py @@ -11,7 +11,7 @@ from typing import Any import httpx import pytest -TIMEOUT = 10 +TIMEOUT = 30 URL = "http://spoolman:" + os.environ.get("SPOOLMAN_PORT", "8000")