mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-07-24 01:12:06 +08:00
47c38d9e8f
version: sunnypilot v2026.002.000 (dev)
date: 2026-07-20T19:24:47
master commit: 2c334ede44
12 lines
303 B
Python
12 lines
303 B
Python
from opendbc.car.docs import generate_cars_md, get_all_car_docs
|
|
from openpilot.selfdrive.car.docs import CARS_MD_TEMPLATE
|
|
|
|
|
|
class TestCarDocs:
|
|
@classmethod
|
|
def setup_class(cls):
|
|
cls.all_cars = get_all_car_docs()
|
|
|
|
def test_generator(self):
|
|
generate_cars_md(self.all_cars, CARS_MD_TEMPLATE)
|