diff --git a/test-all.ps1 b/test-all.ps1 index 3e2343d119..10ed0a9583 100644 --- a/test-all.ps1 +++ b/test-all.ps1 @@ -23,12 +23,12 @@ $solutionPaths = ( "templates/app/aspnet-core" ) -# Build all solutions +# Test all solutions foreach ($solutionPath in $solutionPaths) { $solutionAbsPath = (Join-Path $rootFolder $solutionPath) Set-Location $solutionAbsPath - dotnet test + dotnet test --no-build --no-restore if (-Not $?) { Write-Host ("Test failed for the solution: " + $solutionPath) Set-Location $rootFolder