From 162702ac3a37b163bf795087cd895134101f934c Mon Sep 17 00:00:00 2001 From: Howard Wolosky Date: Sun, 31 May 2020 08:21:19 -0700 Subject: [PATCH] Setting Pester tests to default to using -NoStatus to reduce time It appears that suppressing Status may improve the run time of the tests and remove log corruption on Linux and Mac. --- Tests/Common.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/Tests/Common.ps1 b/Tests/Common.ps1 index 77673eda..de736fe2 100644 --- a/Tests/Common.ps1 +++ b/Tests/Common.ps1 @@ -89,6 +89,7 @@ function Initialize-CommonTestSetup Reset-GitHubConfiguration Set-GitHubConfiguration -DisableTelemetry # We don't want UT's to impact telemetry Set-GitHubConfiguration -LogRequestBody # Make it easier to debug UT failures + Set-GitHubConfiguration -DefaultNoStatus # Status corrupts the raw CI logs for Linux and Mac, and makes runs take slightly longer. } Initialize-CommonTestSetup