From 90aeed69618269d9d43237e0cb227a41a9c106b4 Mon Sep 17 00:00:00 2001 From: James Suplizio Date: Fri, 7 Jun 2024 10:22:06 -0700 Subject: [PATCH] Pin pester version to 5.5.0 (#8396) --- 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 ce42f65b646..036bcbcae3e 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