mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 14:43:57 +08:00
* fix value pass
* fix test
---------
Co-authored-by: Justin Newberry <justin@comma.ai>
old-commit-hash: 71236204bb
16 lines
388 B
Python
Executable File
16 lines
388 B
Python
Executable File
#!/usr/bin/env python3
|
|
import pytest
|
|
import unittest
|
|
|
|
from openpilot.tools.sim.bridge.metadrive.metadrive_bridge import MetaDriveBridge
|
|
from openpilot.tools.sim.tests.test_sim_bridge import TestSimBridgeBase
|
|
|
|
@pytest.mark.slow
|
|
class TestMetaDriveBridge(TestSimBridgeBase):
|
|
def create_bridge(self):
|
|
return MetaDriveBridge(False, False)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|