From 38c4b446959898cf73110009935b06ca11735db4 Mon Sep 17 00:00:00 2001 From: lola Date: Mon, 28 Oct 2024 17:19:28 -0700 Subject: [PATCH] Lowered Carla timeout to 180s --- tests/simulators/carla/test_actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/simulators/carla/test_actions.py b/tests/simulators/carla/test_actions.py index dc287f6cf..ba58fa1a2 100644 --- a/tests/simulators/carla/test_actions.py +++ b/tests/simulators/carla/test_actions.py @@ -44,7 +44,7 @@ def getCarlaSimulator(getAssetPath): f"bash {CARLA_ROOT}/CarlaUE4.sh -RenderOffScreen", shell=True ) - for _ in range(600): + for _ in range(180): if isCarlaServerRunning(): break time.sleep(1)