Skip to content

Commit ae3f6a8

Browse files
feat: add report summary workflow to process and display test results
1 parent 2ad9ad9 commit ae3f6a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
echo "| Test | Status |"
9292
echo "| ---- | ------ |"
9393
if jq -e '.tests' "$REPORT_FILE" >/dev/null 2>&1; then
94-
jq -r ".tests[] | \"\(.nodeid)\t\(.outcome // \\\"passed\\\")\"" "$REPORT_FILE" | \
94+
jq -r '.tests[] | "\(.nodeid)\t\(.outcome // "passed")"' "$REPORT_FILE" | \
9595
while IFS=$'\t' read -r NODEID OUTCOME; do
9696
case "${OUTCOME}" in
9797
passed) ICON="✅ Passed" ;;

0 commit comments

Comments
 (0)