From f4778b0137cf818d65b966dd114e44220b079133 Mon Sep 17 00:00:00 2001 From: Shyju Krishnankutty Date: Thu, 12 Mar 2026 18:37:54 -0700 Subject: [PATCH] tweak dotnet test cmnd --- .github/workflows/dotnet-integration-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet-integration-tests.yml b/.github/workflows/dotnet-integration-tests.yml index 029ec5151d..d9ce13b9fd 100644 --- a/.github/workflows/dotnet-integration-tests.yml +++ b/.github/workflows/dotnet-integration-tests.yml @@ -80,7 +80,7 @@ jobs: for project in $INTEGRATION_TEST_PROJECTS; do target_frameworks=$(dotnet msbuild $project -getProperty:TargetFrameworks -p:Configuration=${{ matrix.configuration }} -nologo 2>/dev/null | tr -d '\r') if [[ "$target_frameworks" == *"${{ matrix.targetFramework }}"* ]]; then - dotnet test -f ${{ matrix.targetFramework }} -c ${{ matrix.configuration }} $project --no-build -v Normal --logger trx --filter "Category!=IntegrationDisabled" + dotnet test -f ${{ matrix.targetFramework }} -c ${{ matrix.configuration }} $project --logger trx --filter "Category!=IntegrationDisabled" else echo "Skipping $project - does not support target framework ${{ matrix.targetFramework }} (supports: $target_frameworks)" fi