Skip to content

Commit 77ae286

Browse files
Copilotpelikhan
andcommitted
Complete compile error summary feature
All tests pass successfully: - Unit tests verify error tracking and display - Integration tests confirm proper behavior - Linting and formatting pass - Manual testing shows correct output format Feature now displays failed workflows with: - Full file path for easy identification - Error count per workflow (with proper singular/plural) - Clean, readable format at end of compilation Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
1 parent 9b6ad7d commit 77ae286

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkg/cli/compile_helpers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ func handleFileDeleted(mdFile string, verbose bool) {
402402
func trackWorkflowFailure(stats *CompilationStats, workflowPath string, errorCount int) {
403403
// Add to FailedWorkflows for backward compatibility
404404
stats.FailedWorkflows = append(stats.FailedWorkflows, filepath.Base(workflowPath))
405-
405+
406406
// Add detailed failure information
407407
stats.FailureDetails = append(stats.FailureDetails, WorkflowFailure{
408408
Path: workflowPath,

0 commit comments

Comments
 (0)