返回 Skill 列表
extension
分类: 开发与工程无需 API Key

dotnet-test-triage

运行dotnet test,捕获失败的测试用例,并生成一个重跑过滤器加上一个Markdown格式的失败摘要。当测试运行失败且你需要一个集中的重跑命令或一个简洁的失败报告时使用。

person作者: jakexiaohubgithub

dotnet-test-triage

Run dotnet test, collect failed test cases, and write a compact failure report plus a rerun filter.

Outputs

  • artifacts/codex/test-failures.md
  • artifacts/codex/test-filter.txt

Run

bash .codex/skills/dotnet-test-triage/scripts/run-test-triage.sh
pwsh -File .codex/skills/dotnet-test-triage/scripts/run-test-triage.ps1

Optional: pass arguments through to dotnet test:

bash .codex/skills/dotnet-test-triage/scripts/run-test-triage.sh ./src/Incursa.slnx --no-restore
pwsh -File .codex/skills/dotnet-test-triage/scripts/run-test-triage.ps1 ./src/Incursa.slnx --no-restore

Optional: override the default command (useful for repo-specific defaults):

DOTNET_TEST_CMD="dotnet test ./src/Incursa.slnx --no-restore" \
  bash .codex/skills/dotnet-test-triage/scripts/run-test-triage.sh
$env:DOTNET_TEST_CMD = "dotnet test ./src/Incursa.slnx --no-restore"
pwsh -File .codex/skills/dotnet-test-triage/scripts/run-test-triage.ps1

Rerun recommendations

  • Basic rerun of failures:
    • dotnet test --filter "$(cat artifacts/codex/test-filter.txt)"
  • More output:
    • dotnet test --filter "$(cat artifacts/codex/test-filter.txt)" -v normal
    • dotnet test --filter "$(cat artifacts/codex/test-filter.txt)" -v diag
  • Capture blame for crashes/hangs:
    • dotnet test --filter "$(cat artifacts/codex/test-filter.txt)" --blame
    • dotnet test --filter "$(cat artifacts/codex/test-filter.txt)" --blame-hang --blame-hang-timeout 10m
  • Disable parallelization if needed:
    • dotnet test --filter "$(cat artifacts/codex/test-filter.txt)" --no-parallel

Notes

  • The filter file is empty when no failing tests are detected.
  • The failure report contains the test name and a short error snippet from the TRX logs.