From 33c48164d79907d2b26568295ffc647bb790a4e1 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Fri, 17 Oct 2025 14:56:52 +0200 Subject: [PATCH] Change sleep duration in tests from 10 to 20 seconds Increased sleep duration in tests to 20 seconds. Signed-off-by: Ettore Di Giacinto --- backend/python/diffusers/test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/python/diffusers/test.py b/backend/python/diffusers/test.py index 0e92538e4..14b2e175e 100644 --- a/backend/python/diffusers/test.py +++ b/backend/python/diffusers/test.py @@ -31,7 +31,7 @@ class TestBackendServicer(unittest.TestCase): """ This method tests if the server starts up successfully """ - time.sleep(10) + time.sleep(20) try: self.setUp() with grpc.insecure_channel("localhost:50051") as channel: @@ -48,7 +48,7 @@ class TestBackendServicer(unittest.TestCase): """ This method tests if the model is loaded successfully """ - time.sleep(10) + time.sleep(20) try: self.setUp() with grpc.insecure_channel("localhost:50051") as channel: @@ -66,7 +66,7 @@ class TestBackendServicer(unittest.TestCase): """ This method tests if the backend can generate images """ - time.sleep(10) + time.sleep(20) try: self.setUp() with grpc.insecure_channel("localhost:50051") as channel: