Browse Source

Update test-all.ps1

pull/16693/head
maliming 3 years ago
committed by GitHub
parent
commit
d462d2f426
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      build/test-all.ps1

2
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

Loading…
Cancel
Save