From c4880d80d5e04464593c54c1ba5c03597458b33a Mon Sep 17 00:00:00 2001 From: wrexbe <81056464+wrexbe@users.noreply.github.com> Date: Fri, 20 May 2022 18:16:05 -0700 Subject: [PATCH] Fix github action test output spam (#8316) --- .github/workflows/build-test.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 44ba606192..9b2574b6cd 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -39,31 +39,31 @@ jobs: - name: Setup Submodule run: | git submodule update --init --recursive - + - name: Pull engine updates uses: space-wizards/submodule-dependency@v0.1.5 - + - name: Update Engine Submodules run: | cd RobustToolbox/ git submodule update --init --recursive - + - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: dotnet-version: 6.0.x - + - name: Install dependencies run: dotnet restore - + - name: Build Project run: dotnet build --configuration Release --no-restore /p:WarningsAsErrors=nullable /m - + - name: Run Content.Tests - run: dotnet test --no-build Content.Tests/Content.Tests.csproj -v n - + run: dotnet test --no-build Content.Tests/Content.Tests.csproj -- NUnit.ConsoleOut=0 + - name: Run Content.IntegrationTests shell: pwsh run: | $env:DOTNET_gcServer=1 - dotnet test --no-build Content.IntegrationTests/Content.IntegrationTests.csproj -v n + dotnet test --no-build Content.IntegrationTests/Content.IntegrationTests.csproj -- NUnit.ConsoleOut=0