Skip to content

Commit 048afc8

Browse files
committed
🤖 fix: use is_resolved field in jq parsing for per-task summary
1 parent b2bd9e7 commit 048afc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/terminal-bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
cat "$RESULTS_FILE" | jq '.' || cat "$RESULTS_FILE"
121121
echo ""
122122
echo "Per-task summary:"
123-
cat "$RESULTS_FILE" | jq -r '.trials[] | "\(.task_id): \(if .resolved then "✓ PASS" else "✗ FAIL" end)"' 2>/dev/null || echo "Failed to parse task details"
123+
cat "$RESULTS_FILE" | jq -r '.trials[] | "\(.task_id): \(if .is_resolved then "✓ PASS" else "✗ FAIL" end)"' 2>/dev/null || echo "Failed to parse task details"
124124
else
125125
echo "No results.json found in runs/"
126126
ls -la runs/

0 commit comments

Comments
 (0)