From 787dda70ee6460ab348f282a83087417cd73721d Mon Sep 17 00:00:00 2001 From: jhoneill Date: Thu, 6 Dec 2018 20:16:34 +0000 Subject: [PATCH] Revert "Take verbose back out of DoTests" This reverts commit 268d48ce3d947d2da7a5456b52bb1acd5b224572. --- DoTests.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DoTests.ps1 b/DoTests.ps1 index 8a21915..9b9527a 100644 --- a/DoTests.ps1 +++ b/DoTests.ps1 @@ -9,6 +9,7 @@ param( $PSVersionTable.PSVersion $env:BUILD_ARTIFACTSTAGINGDIRECTORY +$VerbosePreference = "Continue" ## Create the zip before the tests run ## Otherwise the EPPlus.dll is in use after the Pester run $ModuleVersion = (Get-Content -Raw .\ImportExcel.psd1) | Invoke-Expression | ForEach-Object ModuleVersion @@ -27,4 +28,4 @@ $result = Invoke-Pester -Script $PSScriptRoot\__tests__ -Verbose -PassThru if ($result.FailedCount -gt 0) { throw "$($result.FailedCount) tests failed." -} +} \ No newline at end of file