From 38e0cdc72b7e87d02b357b39435176bd35c3e63e Mon Sep 17 00:00:00 2001 From: ili101 Date: Sat, 10 Oct 2020 04:44:27 +0300 Subject: [PATCH] Import Pester V4 --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d28e4d2..279da9a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -22,7 +22,7 @@ jobs: steps: - powershell: 'Install-Module -Name Pester -Force -SkipPublisherCheck -MaximumVersion 4.99.99' displayName: 'Update Pester' - - powershell: '& ./CI/Assert.ps1 ; ./CI/CI.ps1 -Test' + - powershell: 'Import-Module -Name Pester -MaximumVersion 4.99.99 ; & ./CI/Assert.ps1 ; ./CI/CI.ps1 -Test' displayName: 'Install and Test' - task: PublishTestResults@2