diff --git a/.github/workflows/container_apps_chat_ci.yml b/.github/workflows/container_apps_chat_ci.yml index 9b86c26a..b87bdcb1 100644 --- a/.github/workflows/container_apps_chat_ci.yml +++ b/.github/workflows/container_apps_chat_ci.yml @@ -30,7 +30,10 @@ jobs: - name: Test # Dependabot cannot access secrets, so we disable this step for Dependabot if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]' - run: dotnet test "${{ env.WORKING_DIRECTORY }}" --logger "trx;LogFileName=test-results.trx" --filter Category!=ManualTest + run: > + dotnet test "${{ env.WORKING_DIRECTORY }}" + --logger "GitHubActions;summary.includePassedTests=true;summary.includeSkippedTests=true" + --filter Category!=ManualTest env: ConnectionStrings__AppConfig: ${{ secrets.AZURE_APP_CONFIGURATION_CONNECTION_STRING }} diff --git a/.github/workflows/website_backend_ci.yml b/.github/workflows/website_backend_ci.yml index 75ce2501..0140bd14 100644 --- a/.github/workflows/website_backend_ci.yml +++ b/.github/workflows/website_backend_ci.yml @@ -30,7 +30,10 @@ jobs: - name: Test # Dependabot cannot access secrets, so we disable this step for Dependabot if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]' - run: dotnet test "${{ env.WORKING_DIRECTORY }}" --logger "trx;LogFileName=test-results.trx" --filter Category!=ManualTest + run: > + dotnet test "${{ env.WORKING_DIRECTORY }}" + --logger "GitHubActions;summary.includePassedTests=true;summary.includeSkippedTests=true" + --filter Category!=ManualTest env: ConnectionStrings__AppConfig: ${{ secrets.AZURE_APP_CONFIGURATION_CONNECTION_STRING }} diff --git a/.github/workflows/website_cd.yml b/.github/workflows/website_cd.yml index ae2bdfcc..58199009 100644 --- a/.github/workflows/website_cd.yml +++ b/.github/workflows/website_cd.yml @@ -35,7 +35,10 @@ jobs: run: dotnet build "${{ env.WORKING_DIRECTORY }}" --configuration Release --no-restore - name: Test - run: dotnet test "${{ env.TESTS_DIRECTORY }}" --logger "trx;LogFileName=test-results.trx" --filter Category!=ManualTest + run: > + dotnet test "${{ env.WORKING_DIRECTORY }}" + --logger "GitHubActions;summary.includePassedTests=true;summary.includeSkippedTests=true" + --filter Category!=ManualTest env: ConnectionStrings__AppConfig: ${{ secrets.AZURE_APP_CONFIGURATION_CONNECTION_STRING }} diff --git a/.github/workflows/website_frontend_ci.yml b/.github/workflows/website_frontend_ci.yml index cea97aea..69f3cd88 100644 --- a/.github/workflows/website_frontend_ci.yml +++ b/.github/workflows/website_frontend_ci.yml @@ -33,7 +33,10 @@ jobs: - name: Test # Dependabot cannot access secrets, so we disable this step for Dependabot if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]' - run: dotnet test "${{ env.WORKING_DIRECTORY }}" --logger "trx;LogFileName=frontend-test-results.trx" --filter Category!=ManualTest + run: > + dotnet test "${{ env.WORKING_DIRECTORY }}" + --logger "GitHubActions;summary.includePassedTests=true;summary.includeSkippedTests=true" + --filter Category!=ManualTest env: ConnectionStrings__AppConfig: ${{ secrets.AZURE_APP_CONFIGURATION_CONNECTION_STRING }} diff --git a/tests/container_apps/Jordnaer.Chat.Tests/Jordnaer.Chat.Tests.csproj b/tests/container_apps/Jordnaer.Chat.Tests/Jordnaer.Chat.Tests.csproj index a9acdad2..26aeade4 100644 --- a/tests/container_apps/Jordnaer.Chat.Tests/Jordnaer.Chat.Tests.csproj +++ b/tests/container_apps/Jordnaer.Chat.Tests/Jordnaer.Chat.Tests.csproj @@ -15,6 +15,10 @@ + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + diff --git a/tests/web/Jordnaer.E2E.Tests/Jordnaer.E2E.Tests.csproj b/tests/web/Jordnaer.E2E.Tests/Jordnaer.E2E.Tests.csproj index 1a001221..011f8629 100644 --- a/tests/web/Jordnaer.E2E.Tests/Jordnaer.E2E.Tests.csproj +++ b/tests/web/Jordnaer.E2E.Tests/Jordnaer.E2E.Tests.csproj @@ -8,6 +8,10 @@ + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + diff --git a/tests/web/Jordnaer.Load.Tests/Jordnaer.Load.Tests.csproj b/tests/web/Jordnaer.Load.Tests/Jordnaer.Load.Tests.csproj index a528bbc6..4adb7b67 100644 --- a/tests/web/Jordnaer.Load.Tests/Jordnaer.Load.Tests.csproj +++ b/tests/web/Jordnaer.Load.Tests/Jordnaer.Load.Tests.csproj @@ -8,6 +8,10 @@ + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + diff --git a/tests/web/Jordnaer.Tests/Jordnaer.Tests.csproj b/tests/web/Jordnaer.Tests/Jordnaer.Tests.csproj index 694fd3e0..8e853a43 100644 --- a/tests/web/Jordnaer.Tests/Jordnaer.Tests.csproj +++ b/tests/web/Jordnaer.Tests/Jordnaer.Tests.csproj @@ -12,6 +12,10 @@ + + all + runtime; build; native; contentfiles; analyzers; buildtransitive +