Remove console logger specification for unit tests

This commit is contained in:
Dominion
2023-01-03 09:21:40 -05:00
parent a843b76fac
commit f11e5e2cff
+2 -2
View File
@@ -173,7 +173,7 @@ jobs:
run: dotnet build -c ${{ matrix.configuration }}NoService
- name: Run Unit Tests
run: sudo dotnet test -v diagnostic --no-build --filter FullyQualifiedName!~IntegrationTest -l "console;verbosity=detailed;noprogress=true" -c ${{ matrix.configuration }}NoService --collect:"XPlat Code Coverage" --settings build/coverlet.runsettings -r ./TestResults tgstation-server.sln
run: sudo dotnet test --no-build --filter FullyQualifiedName!~IntegrationTest -c ${{ matrix.configuration }}NoService --collect:"XPlat Code Coverage" --settings build/coverlet.runsettings -r ./TestResults tgstation-server.sln
- name: Store Code Coverage
uses: actions/upload-artifact@v3
@@ -204,7 +204,7 @@ jobs:
run: dotnet build -c ${{ matrix.configuration }}
- name: Run Unit Tests
run: dotnet test --no-build --filter FullyQualifiedName!~IntegrationTest -l "console;verbosity=detailed;noprogress=true" -c ${{ matrix.configuration }} --collect:"XPlat Code Coverage" --settings build/coverlet.runsettings -r ./TestResults tgstation-server.sln
run: dotnet test --no-build --filter FullyQualifiedName!~IntegrationTest -c ${{ matrix.configuration }} --collect:"XPlat Code Coverage" --settings build/coverlet.runsettings -r ./TestResults tgstation-server.sln
- name: Store Code Coverage
uses: actions/upload-artifact@v3