name: run-cpython-tests description: Run the CPython regression test suite in this repo via scripts/run_cpython_tests.sh with parallel execution, enforce a per-test timeout, capture output to cpython_full_test_run.log, and summarize failures from that log.
Run CPython tests
Run the full suite
- Run with full permissions, including network.
- Use a 3-minute per-test timeout and keep parallelism enabled (run_cpython_tests.sh already uses -j0).
- If the local
cpython/checkout is missing the target branch, re-run withFETCH_CPYTHON=1to allow a network update. - Capture output to a single log file while preserving the exit status:
set -o pipefail
./scripts/run_cpython_tests.sh --timeout 180 2>&1 | tee cpython_full_test_run.log
Summarize failures from the log
- Locate failure anchors:
rg -n "^(FAIL|ERROR|TIMEOUT|CRASHED|INTERRUPTED|LEAKED|ENV_CHANGED):" cpython_full_test_run.log
- Extract each failure block (look for the separator lines of ===) and classify the failure based on the first error line after the traceback.
- Use these categories in the summary:
- FAIL: assertion mismatch or explicit test failure; call out the mismatched expectation.
- ERROR: unexpected exception; report the exception type and message.
- TIMEOUT: test exceeded 180 seconds; call out the hang/timeout.
- CRASHED/FATAL: interpreter crash; mention the fatal error or signal.
- LEAKED/ENV_CHANGED: resource leak or environment mutation; mention the resource.
- Summarize each failing test as:
test_name: <category> - <short reason from output>.
chat Comments (0)
Sign in to join the discussion and leave a comment.
Skill Details
GitHub Stars
0
GitHub Forks
0
Created
Jan 2026
Last Updated
5个月前
tools
tools testing
Related Skills
Build your own?
Join 12,000+ developers contributing to the Claude ecosystem.
No comments yet. Be the first to share your thoughts!