Skip to content

Commit

Permalink
Update CICD job to run tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
AjayKMehta committed Feb 23, 2025
1 parent b88b520 commit 6822e53
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
TESTINGPLATFORM_DIAGNOSTIC: 1
TESTINGPLATFORM_DIAGNOSTIC_VERBOSITY: Information

steps:
- name: 'Checkout Repository'
Expand Down Expand Up @@ -104,7 +106,7 @@ jobs:

- name: Test
if: env.ENABLED == '1'
run: dotnet test -s ./cicd.runsettings --configuration Release --no-build --verbosity quiet --logger "GitHubActions;summary.includeNotFoundTests=false"
run: dotnet test -s ./cicd.runsettings --configuration Release --no-build --verbosity quiet --logger "GitHubActions;summary.includeNotFoundTests=false" -- --coverage --coverage-output-format xml --coverage-output coverage.cobertura.xml --crashdump --hangdump

- name: ReportGenerator
if: env.ENABLED == '1'
Expand Down

0 comments on commit 6822e53

Please sign in to comment.