ci: fix simulator test for github runner (#33910)

* try

* try

* test

* try

* fix

* back
pull/33912/head
Maxime Desroches 6 months ago committed by GitHub
parent 420927c8db
commit df523385ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      tools/sim/bridge/metadrive/metadrive_world.py

@ -105,7 +105,7 @@ class MetaDriveWorld(World):
if x_dist >= dist_threshold or y_dist >= dist_threshold: # position not the same during staying still, > threshold is considered moving
self.distance_moved += x_dist + y_dist
time_check_threshold = 15
time_check_threshold = 29
current_time = time.monotonic()
since_last_check = current_time - self.last_check_timestamp
if since_last_check >= time_check_threshold:

Loading…
Cancel
Save