Skip to content

Commit

Permalink
update TestResultAnalyzer.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
erichiller committed Feb 7, 2024
1 parent a370e3a commit 67cc28b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/PlotGitHubAction/TestResultAnalyzer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -265,10 +265,10 @@ private void writeMarkdownSummary( ) {
// Write Test Summary as an output
Utils.SetGitHubActionsOutput( GitHubActionOutputIds.TEST_SUMMARY,
$$"""
✅ Success : {{this.TestSuccessCount}}
💤 Skip : {{this.TestSkipCount}}
❌ Failed : {{this.TestFailCount}}
Total : {{_testResults.Count}}
✅ Success : {{this.TestSuccessCount:N0}}
💤 Skip : {{this.TestSkipCount:N0}}
❌ Failed : {{this.TestFailCount:N0}}
#️⃣ Total : {{_testResults.Count:N0}}
""");

System.IO.File.WriteAllText( MarkdownSummaryFilePath, Sb.ToString() );
Expand Down

0 comments on commit 67cc28b

Please sign in to comment.