get_test_history
Retrieve test run history summaries to analyze flaky tests, detect speed regressions, and track coverage trends. Each entry shows timestamp, pass/fail counts, duration, and pass rate. Default shows last 10 runs, adjustable up to 100.
Instructions
遍歷 test-results/history/*.json 快照(每次 run_tests 完會自動歸檔),回傳逐次摘要:timestamp / total / passed / failed / skipped / duration / pass_rate(0-100)。用於 flake 分析(『這條測試上週一直 fail 嗎』)、速度退化分析(『duration 是不是越來越長』)、覆蓋趨勢圖。預設回最近 10 次,limit 可調 1-100。想要可執行行動建議的話接 get_optimization_plan,它已綜合 history + telemetry。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | 選填,回最近 N 次 run 的摘要。1-100,預設 10。長期 flake 分析建議 30+。 |