mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-08-16 07:20:59 +00:00
15 lines
459 B
JavaScript
Executable File
15 lines
459 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
import { runPytestProbe } from "./pytest-probe.mjs";
|
|
|
|
await runPytestProbe({
|
|
caseId: "agent-runner-runtime-chaos",
|
|
repoEnvKey: "LANGBOT_PLUGIN_SDK_REPO",
|
|
defaultRepo: "../langbot-plugin-sdk",
|
|
description: "LangBot plugin SDK AgentRunner runtime failure, timeout, forwarding, and pull API pytest probe.",
|
|
testTargets: [
|
|
"tests/runtime/plugin/test_mgr_agent_runner.py",
|
|
"tests/runtime/test_pull_api_handlers.py",
|
|
],
|
|
});
|