mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-07-16 23:52:06 +08:00
62b97fabf7
* merge selfdrive/debug/ into tools/scripts/ * rm unused * single timings script * lil more * profiling is scripts quality
13 lines
304 B
Python
13 lines
304 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)
|