GitHubActionsTestLogger 2.0.1
Install-Package GitHubActionsTestLogger -Version 2.0.1
dotnet add package GitHubActionsTestLogger --version 2.0.1
<PackageReference Include="GitHubActionsTestLogger" Version="2.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
paket add GitHubActionsTestLogger --version 2.0.1
#r "nuget: GitHubActionsTestLogger, 2.0.1"
// Install GitHubActionsTestLogger as a Cake Addin
#addin nuget:?package=GitHubActionsTestLogger&version=2.0.1
// Install GitHubActionsTestLogger as a Cake Tool
#tool nuget:?package=GitHubActionsTestLogger&version=2.0.1
GitHub Actions Test Logger
π’ Project status: active<sup>[?]</sup>
Custom logger for dotnet test
that integrates with GitHub Actions.
When using this logger, failed tests are listed in job annotations and highlighted in code diffs.
Additionally, this logger also generates a job summary that contains detailed information about the executed test run.
Terms of use<sup>[?]</sup>
By using this project or its source code, for any purpose and in any shape or form, you grant your implicit agreement to all the following statements:
- You condemn Russia and its military aggression against Ukraine
- You recognize that Russia is an occupant that unlawfully invaded a sovereign state
- You support Ukraine's territorial integrity, including its claims over temporarily occupied territories of Crimea and Donbas
- You reject false narratives perpetuated by Russian state propaganda
To learn more about the war and how you can help, click here. Glory to Ukraine! πΊπ¦
Install
- π¦ NuGet:
dotnet add package GitHubActionsTestLogger
Screenshots
Usage
Installation
To use GitHub Actions Test Logger, follow these steps:
- Install GitHubActionsTestLogger package in your test project
- Update Microsoft.NET.Test.Sdk package in your test project to the latest version
- Modify your GitHub Actions workflow file by adding
--logger GitHubActions
todotnet test
:
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Build & test
run: dotnet test --configuration Release --logger GitHubActions
Warning: Ensure that your test project references Microsoft.NET.Test.Sdk version 17.2.0 or higher. Older versions of this package may not work properly with custom test loggers.
Warning: If you are using .NET SDK v2.2 or lower, you need to enable
<CopyLocalLockFileAssemblies>
property in your test project.
Options
GitHub Actions Test Logger has options that you can override to customize its behavior.
In order to pass an option to the logger, include it as an additional parameter inside --logger
:
dotnet test --logger "GitHubActions;annotations.titleFormat=$test;annotations.messageFormat=$error"
annotations.titleFormat
Specifies the format of the annotation title used when reporting test failures.
The following replacement tokens are available:
$test
β replaced with the display name of the test$traits.TRAIT_NAME
β replaced with the value of the trait namedTRAIT_NAME
$error
β replaced with the error message$trace
β replaced with the stack trace$framework
β replaced with the target framework
Default: $test
.
Examples:
$test
βMyTests.Test1
[$traits.Category] $test
β[UI Tests] MyTests.Test1
$test ($framework)
βMyTests.Test1 (.NETCoreApp,Version=v6.0)
annotations.messageFormat
Specifies the format of the annotation message used when reporting test failures.
Supports the same replacement tokens as annotations.titleFormat
.
Default: $error
.
Examples:
$error
βAssertionException: Expected 'true' but found 'false'
$error\n$trace
βAssertionException: Expected 'true' but found 'false'
, followed by stacktrace on the next line
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETFramework 4.5.1
- Microsoft.TestPlatform.ObjectModel (>= 17.2.0)
-
.NETStandard 2.0
- Microsoft.TestPlatform.ObjectModel (>= 17.2.0)
-
.NETStandard 2.1
- Microsoft.TestPlatform.ObjectModel (>= 17.2.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (45)
Showing the top 5 popular GitHub repositories that depend on GitHubActionsTestLogger:
Repository | Stars |
---|---|
DapperLib/Dapper
Dapper - a simple object mapper for .Net
|
|
StackExchange/StackExchange.Redis
General purpose redis client
|
|
EventStore/EventStore
The stream database optimised for event sourcing
|
|
AngleSharp/AngleSharp
:angel: The ultimate angle brackets parser library parsing HTML5, MathML, SVG and CSS to construct a DOM based on the official W3C specifications.
|
|
Tyrrrz/DiscordChatExporter
Exports Discord chat logs to a file
|
Version | Downloads | Last updated |
---|---|---|
2.0.1 | 14,215 | 6/10/2022 |
2.0.0 | 16,455 | 5/29/2022 |
2.0.0-alpha | 965 | 5/26/2022 |
1.4.1 | 43,430 | 4/19/2022 |
1.4.0 | 479 | 4/18/2022 |
1.3.0 | 77,204 | 2/21/2022 |
1.2.0 | 452,494 | 2/22/2021 |
1.1.2 | 78,883 | 10/26/2020 |
1.1.1 | 10,048 | 10/1/2020 |
1.1.0 | 125,450 | 4/27/2020 |
1.0.0 | 7,610 | 3/23/2020 |
0.0.1 | 906 | 3/22/2020 |