From 8e69b66e82b74c9fd32af9c73c1c172156de62fe Mon Sep 17 00:00:00 2001 From: dfinke Date: Sun, 27 May 2018 12:53:26 -0400 Subject: [PATCH] Checks version of pester on appveyor --- DoTests.ps1 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/DoTests.ps1 b/DoTests.ps1 index 5813ab8..bbf2898 100644 --- a/DoTests.ps1 +++ b/DoTests.ps1 @@ -1,3 +1,8 @@ + +Get-Module -ListAvailable pester | Out-Host + + +return if ((Get-Module -ListAvailable pester) -eq $null) { Install-Module -Name Pester -Repository PSGallery -Force }