From 5901ddedfa0b060e208017f0e9d71964dca83607 Mon Sep 17 00:00:00 2001 From: Elijah Date: Thu, 12 Dec 2024 11:13:42 +0000 Subject: [PATCH] increase lock expiration in tests to 2500 --- tests/units/test_state.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/units/test_state.py b/tests/units/test_state.py index bfa9b80bc..912d72f4f 100644 --- a/tests/units/test_state.py +++ b/tests/units/test_state.py @@ -68,7 +68,7 @@ from tests.units.states.mutation import MutableSQLAModel, MutableTestState from .states import GenState CI = bool(os.environ.get("CI", False)) -LOCK_EXPIRATION = 2000 if CI else 300 +LOCK_EXPIRATION = 2500 if CI else 300 LOCK_WARNING_THRESHOLD = 1000 if CI else 100 LOCK_WARN_SLEEP = 1.5 if CI else 0.15 LOCK_EXPIRE_SLEEP = 2.5 if CI else 0.4