mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-02 20:12:07 +08:00
CI: fix test car models bug
old-commit-hash: 9e1ee72a914dce3812475e588cbcf566dca733d8
This commit is contained in:
@@ -37,7 +37,7 @@ ignore_carstate_check = [
|
||||
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):
|
||||
|
||||
@classmethod
|
||||
|
||||
Reference in New Issue
Block a user