From 2a373212939ffad6cce3ab92b37860dcc5d54eeb Mon Sep 17 00:00:00 2001 From: Julian Oes Date: Tue, 31 Mar 2020 10:56:53 +0200 Subject: [PATCH] mavsdk_tests: wait a bit longer for gazebo command Otherwise this triggers in CI sometimes. --- test/mavsdk_tests/process_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/mavsdk_tests/process_helper.py b/test/mavsdk_tests/process_helper.py index 27c305063b..71e2f94663 100644 --- a/test/mavsdk_tests/process_helper.py +++ b/test/mavsdk_tests/process_helper.py @@ -63,7 +63,7 @@ class Runner: self.thread = threading.Thread(target=self.process_output) self.thread.start() if self.wait_until_complete: - if self.wait(1.0) != 0: + if self.wait(5.0) != 0: raise TimeoutError("Command not completed") def process_output(self) -> None: