From 4217a0ab33b103528045ab37af9febc61e7c2a75 Mon Sep 17 00:00:00 2001 From: James Suplizio Date: Fri, 7 Jun 2024 09:48:11 -0700 Subject: [PATCH] Pin pester version to 5.5.0 --- 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 ce42f65b6466..036bcbcae3e6 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