CI: fix test car models bug

old-commit-hash: 9e1ee72a91
commatwo_master
Adeeb Shihadeh 3 years ago
parent 989270ac56
commit 211fc86ae5
  1. 2
      selfdrive/test/test_models.py

@ -37,7 +37,7 @@ ignore_carstate_check = [
CHRYSLER.PACIFICA_2017_HYBRID, CHRYSLER.PACIFICA_2017_HYBRID,
] ]
@parameterized_class(('car_model'), [(car,) for i, car in enumerate(all_known_cars()) if i % NUM_JOBS == JOB_ID]) @parameterized_class(('car_model'), [(car,) for i, car in enumerate(sorted(all_known_cars())) if i % NUM_JOBS == JOB_ID])
class TestCarModel(unittest.TestCase): class TestCarModel(unittest.TestCase):
@classmethod @classmethod

Loading…
Cancel
Save