mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-06 05:52:12 +08:00
13 lines
298 B
Python
13 lines
298 B
Python
import os
|
|
|
|
os.environ["DEBUG"] = "0"
|
|
|
|
from openpilot.selfdrive.test.process_replay.process_replay import get_process_config
|
|
|
|
|
|
def test_plannerd_replay_includes_starpilot_inputs():
|
|
cfg = get_process_config("plannerd")
|
|
|
|
assert "starpilotPlan" in cfg.pubs
|
|
assert "starpilotCarState" in cfg.pubs
|