From 34f626a93cfe331e11e98125f795bb316c503ede Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20St=C3=BChmer?= Date: Thu, 12 Dec 2024 12:56:43 +0100 Subject: [PATCH] chore: Normalized test parameters (#109) --- .github/workflows/step-dotnet-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/step-dotnet-tests.yml b/.github/workflows/step-dotnet-tests.yml index f510857..2e8e6f0 100644 --- a/.github/workflows/step-dotnet-tests.yml +++ b/.github/workflows/step-dotnet-tests.yml @@ -116,7 +116,7 @@ jobs: - name: Test id: test run: | - dotnet test ${{ inputs.solution }} -c Release -v ${{ inputs.dotnet-logging }} --no-build --no-restore --collect:"XPlat Code Coverage" /p:GeneratePackageOnBuild=false -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover + dotnet test ${{ inputs.solution }} -c Release -v ${{ inputs.dotnet-logging }} --no-build --no-restore --collect:"XPlat Code Coverage;Format=cobertura,opencover" /p:GeneratePackageOnBuild=false - name: Stop SonarQube Analysis if: ${{ inputs.enableSonarQube == true && (success() || steps.test.conclusion == 'failure') }}