mavsdk_tests: wait a bit longer for gazebo command

Otherwise this triggers in CI sometimes.
This commit is contained in:
Julian Oes
2020-03-31 10:56:53 +02:00
parent 0edc2aa334
commit 2a37321293

View File

@@ -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: