From 04b03c01217f41243bf68bb470a827664affbdef Mon Sep 17 00:00:00 2001 From: "Sean T. Allen" Date: Thu, 31 Aug 2023 20:30:49 +0000 Subject: [PATCH] Run Windows test using --sequential This brings our Windows testing setup in line with our other testing setups. --- make.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make.ps1 b/make.ps1 index 364f516..2d51be6 100644 --- a/make.ps1 +++ b/make.ps1 @@ -217,8 +217,8 @@ switch ($Command.ToLower()) } $testFile = (BuildTest)[-1] - Write-Host "$testFile" - & "$testFile" + Write-Host "$testFile --sequential" + & "$testFile --sequential" if ($LastExitCode -ne 0) { throw "Error" } break }