We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6209fcf commit 25294a9Copy full SHA for 25294a9
eng/common/pipelines/templates/steps/run-pester-tests.yml
@@ -12,8 +12,11 @@ parameters:
12
default: ''
13
14
steps:
15
+
16
+ # Lock Pester to 5.5.0. The reason being is that the signing of 5.6.0 is different and Windows complains.
17
+ # The tracking issue: https://github.com/Azure/azure-sdk-tools/issues/8395
18
- pwsh: |
- Install-Module -Name Pester -Force
19
+ Install-Module -Name Pester -RequiredVersion 5.5.0 -Force
20
displayName: Install Pester
21
22
# default test steps
0 commit comments