From 436e9bfdefeb8213ca308a32906507f82d647561 Mon Sep 17 00:00:00 2001 From: Anton Firszov Date: Sat, 31 Mar 2018 16:57:56 +0200 Subject: [PATCH] an attempt to optimize the execution with -nobuild --- run-tests.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run-tests.ps1 b/run-tests.ps1 index e9beabd07..4ea0521e3 100644 --- a/run-tests.ps1 +++ b/run-tests.ps1 @@ -26,10 +26,10 @@ elseif ($targetFramework -eq "mono") { } else { cd .\tests\ImageSharp.Tests - $xunitArgs = "-c Release -framework $targetFramework" + $xunitArgs = "-nobuild -c Release -framework $targetFramework" if ($targetFramework -eq "netcoreapp2.0") { - # There are issues matching the correct installed runtime if we do not specify it explicitly: + # There were issues matching the correct installed runtime if we do not specify it explicitly: $xunitArgs += " --fx-version 2.0.0" }