From fe18f39cb3ed7dfc6b533d8d147ca96276b55fd1 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Fri, 7 Jun 2024 13:16:39 -0400 Subject: [PATCH] Pin pester version to 5.5.0 (#5703) Co-authored-by: James Suplizio --- eng/common/pipelines/templates/steps/run-pester-tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/eng/common/pipelines/templates/steps/run-pester-tests.yml b/eng/common/pipelines/templates/steps/run-pester-tests.yml index ce42f65b6..036bcbcae 100644 --- a/eng/common/pipelines/templates/steps/run-pester-tests.yml +++ b/eng/common/pipelines/templates/steps/run-pester-tests.yml @@ -12,8 +12,11 @@ parameters: default: '' steps: + + # Lock Pester to 5.5.0. The reason being is that the signing of 5.6.0 is different and Windows complains. + # The tracking issue: https://github.com/Azure/azure-sdk-tools/issues/8395 - pwsh: | - Install-Module -Name Pester -Force + Install-Module -Name Pester -RequiredVersion 5.5.0 -Force displayName: Install Pester # default test steps