1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Roland Mas <lolando@debian.org>
Date: Thu, 25 Jul 2024 09:32:24 +0200
Subject: Increase timeout to make testsuite more resilient
---
tests/test_event.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: pytango/tests/test_event.py
===================================================================
--- pytango.orig/tests/test_event.py
+++ pytango/tests/test_event.py
@@ -26,7 +26,7 @@ from tango.utils import EventCallback, A
MAX_RETRIES = 200
-DELAY_PER_RETRY = 0.05
+DELAY_PER_RETRY = 0.2
event_results = []
|