From f22df6d4a58f1a478b9b6f1159b0df4a3839b749 Mon Sep 17 00:00:00 2001 From: nsubiron Date: Fri, 29 Mar 2019 21:23:53 +0100 Subject: [PATCH] Increase smoke tests time-out --- PythonAPI/test/smoke/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PythonAPI/test/smoke/__init__.py b/PythonAPI/test/smoke/__init__.py index cf950f51e..d217c5bd6 100644 --- a/PythonAPI/test/smoke/__init__.py +++ b/PythonAPI/test/smoke/__init__.py @@ -26,7 +26,7 @@ TESTING_ADDRESS = ('localhost', 3654) class SmokeTest(unittest.TestCase): def setUp(self): self.client = carla.Client(*TESTING_ADDRESS) - self.client.set_timeout(2.0) + self.client.set_timeout(10.0) def tearDown(self): self.client = None