Browse Source

Test skip build and restore.

pull/2198/head
Mehmet Tüken 7 years ago
parent
commit
d57ea5927a
  1. 4
      test-all.ps1

4
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

Loading…
Cancel
Save