You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Check for missing dependency or deleted package errors
123
129
ifecho"$errors"| grep -q "no such target\|no such package\|Package is considered deleted";then
124
130
# Extract relevant part of the error message
125
131
local error_detail=$(echo "$errors"| grep -o "'[^']*'\|Package [^:]*"| head -1)
126
-
failure_details+="**🔍 Possible Fix:** $error_detail might be missing, renamed, or deleted. Add it to --deleted_packages flag if it's intentionally deleted.\n\n"
132
+
failure_details+="**🔍 Possible Fix:** $error_detail might be missing, renamed, or deleted. Add it to --deleted_packages flag if it's intentionally deleted.
133
+
134
+
"
127
135
fi
128
136
fi
129
137
fi
@@ -188,13 +196,20 @@ process_bep() {
188
196
status_emoji="⏱️"
189
197
fi
190
198
191
-
failure_details+="### $status_emoji Failed Test: $test_label ($test_status in ${test_time}s)\n\`\`\`diff\n- $test_errors\n\`\`\`\n\n"
199
+
failure_details+="### $status_emoji Failed Test: $test_label ($test_status in ${test_time}s)
200
+
\`\`\`diff
201
+
- $test_errors
202
+
\`\`\`
203
+
204
+
"
192
205
193
206
# Add stack trace if available
194
207
ifecho"$line"| jq -e 'has("testResult") and .testResult | has("testActionOutput") and .testResult.testActionOutput != null'> /dev/null 2>&1;then
0 commit comments