From 7a666619946f10af53db23c8729e4f571d2f0307 Mon Sep 17 00:00:00 2001 From: Paulo Oliveira Date: Wed, 4 Dec 2024 10:26:23 -0500 Subject: [PATCH] Fixes Flaky test by increasing timeout to 1s fixes #131 Signed-off-by: Paulo Oliveira --- tests/test_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_commands.py b/tests/test_commands.py index ec8074fc..31db8c51 100644 --- a/tests/test_commands.py +++ b/tests/test_commands.py @@ -5096,7 +5096,7 @@ def helper(): thread = threading.Thread(target=helper) thread.start() - thread.join(0.1) + thread.join(1) try: assert not thread.is_alive() assert ok