test_local_runner.py 208 B

12345678910
  1. """测试 LocalRunner"""
  2. import pytest
  3. from tool_agent.runtime.local_runner import LocalRunner
  4. class TestLocalRunner:
  5. def test_runner_init(self):
  6. r = LocalRunner()
  7. assert r is not None