Skip to content

Commit

Permalink
Update TestRunUtil icons to circle with color
Browse files Browse the repository at this point in the history
  • Loading branch information
ricaun committed Dec 17, 2024
1 parent 54286ca commit b1bf8d1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Update `SignExtension.Sign` to sign NuGet or files.
- Update `SignProject` to sign files using `Azure Key Vault` if available.
- Update `GetToolInstallationPath` to use user temp folder.
- Update `TestRunUtil` icons to circle with color.
### Tests
- Update `NuGetExtensionTests`
- Add `AzureKeyVaultConfigTests`
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<Version>1.9.0-beta</Version>
<Version>1.9.0-beta.1</Version>
</PropertyGroup>
</Project>
6 changes: 3 additions & 3 deletions ricaun.Nuke/Utils/TestRunUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,9 @@ public static string GetDetailsTestReport(AbsolutePath resultFile)
}

#region Utils
const string IconFailed = ":x:";
const string IconSkipped = ":warning:";
const string IconPassed = ":heavy_check_mark:";
const string IconFailed = ":red_circle:";
const string IconSkipped = ":yellow_circle:";
const string IconPassed = ":green_circle:";
/// <summary>
/// GetIcon
/// </summary>
Expand Down

0 comments on commit b1bf8d1

Please sign in to comment.