From d57ea5927aa3405cd52b14af112883e3b4abac1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20Tu=CC=88ken?= Date: Mon, 18 Nov 2019 09:39:46 +0300 Subject: [PATCH] Test skip build and restore. --- test-all.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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