diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 32c4039f05d..935c16dc429 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -257,12 +257,21 @@ jobs: # Run the DesktopGL tests on all platforms using NUnitLite runner not dotnet test # We have to run this is bits because the tests crash if too many are run in one go? + - name: Run Framework Tests + run: MonoGame.Tests.exe --trace=Debug --timeout=300000 --test MonoGame.Tests.Framework ${{matrix.filter}} + env: + CI: true + DOTNET_CLI_TELEMETRY_OPTOUT: 1 + working-directory: tests-desktopgl + if: runner.os == 'Windows' + - name: Run Framework Tests run: dotnet MonoGame.Tests.dll --trace=Debug --timeout=300000 --test MonoGame.Tests.Framework ${{matrix.filter}} env: CI: true DOTNET_CLI_TELEMETRY_OPTOUT: 1 working-directory: tests-desktopgl + if: runner.os != 'Windows' - name: Run Audio Tests run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Audio