feat(runner): unify plugin execution across agents and event processors

This commit is contained in:
RockChinQ
2026-09-10 18:04:38 +08:00
parent 8903a40c41
commit f24a7c9bb2
223 changed files with 4091 additions and 3068 deletions
@@ -356,7 +356,7 @@ async def test_marketplace_upgrade_reports_multistep_progress():
connector._persist_installation_package = AsyncMock(side_effect=persist)
connector.handler.apply_plugin_installation = AsyncMock(side_effect=apply)
connector._wait_for_installed_plugin_ready = AsyncMock(side_effect=wait_until_ready)
connector._refresh_agent_runner_registry = AsyncMock(side_effect=refresh_registry)
connector._refresh_runner_registry = AsyncMock(side_effect=refresh_registry)
await connector.upgrade_plugin('author', 'plugin', task_context=task_context)