From 9281ca6fc53800c4af0bc574d47e3a22630affc9 Mon Sep 17 00:00:00 2001 From: Marc Gravell Date: Fri, 27 Mar 2026 14:12:16 +0000 Subject: [PATCH] GitHubActions logger; exclude passed/skipped (#3045) --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 281c9cd53..af12d4fbb 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -34,7 +34,7 @@ jobs: - name: .NET Build run: dotnet build Build.csproj -c Release /p:CI=true - name: StackExchange.Redis.Tests - run: dotnet test tests/StackExchange.Redis.Tests/StackExchange.Redis.Tests.csproj -c Release --logger trx --logger GitHubActions --results-directory ./test-results/ /p:CI=true + run: dotnet test tests/StackExchange.Redis.Tests/StackExchange.Redis.Tests.csproj -c Release --logger trx --logger "GitHubActions;summary-include-passed=false;summary-include-skipped=false" --results-directory ./test-results/ /p:CI=true - uses: dorny/test-reporter@v1 continue-on-error: true if: success() || failure()