From d462d2f426c2960b266a2d2ecc2ae8f30b7600cb Mon Sep 17 00:00:00 2001 From: maliming Date: Tue, 30 May 2023 09:44:49 +0800 Subject: [PATCH] Update test-all.ps1 --- build/test-all.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/test-all.ps1 b/build/test-all.ps1 index 3bd44527a7..f9e85985b9 100644 --- a/build/test-all.ps1 +++ b/build/test-all.ps1 @@ -7,7 +7,7 @@ $full = $args[0] foreach ($solutionPath in $solutionPaths) { $solutionAbsPath = (Join-Path $rootFolder $solutionPath) Set-Location $solutionAbsPath - dotnet test --no-build --no-restore --collect:"XPlat Code Coverage" + dotnet test --no-build --no-restore --collect:"XPlat Code Coverage" -v diag if (-Not $?) { Write-Host ("Test failed for the solution: " + $solutionPath) Set-Location $rootFolder