Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dimos/robot/cli/test_dimos_robot_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class DimosRobotCall:
def __init__(self) -> None:
self.process = None

def start(self):
def start(self) -> None:
self.process = subprocess.Popen(
["dimos", "run", "demo-skill"],
stdout=subprocess.PIPE,
Expand Down Expand Up @@ -143,7 +143,7 @@ def send_human_input(message: str) -> None:


@pytest.mark.skipif(bool(os.getenv("CI")), reason="LCM spy doesn't work in CI.")
def test_dimos_robot_demo_e2e(lcm_spy, dimos_robot_call, human_input):
def test_dimos_robot_demo_e2e(lcm_spy, dimos_robot_call, human_input) -> None:
lcm_spy.wait_for_topic("/rpc/DemoCalculatorSkill/set_LlmAgent_register_skills/res")
lcm_spy.wait_for_topic("/rpc/HumanInput/start/res")
lcm_spy.wait_for_message_content("/agent", b"AIMessage")
Expand Down
Loading
Loading