diff --git a/CI/CI.ps1 b/CI/CI.ps1 index 1170c5c..5f88bc2 100644 --- a/CI/CI.ps1 +++ b/CI/CI.ps1 @@ -95,7 +95,7 @@ if (-not $VersionFilePath) { '[Info] Testing On:' Get-EnvironmentInfo '[Progress] Installing Module.' - . .\ci\Install.ps1 + . .\CI\Install.ps1 '[Progress] Invoking Pester.' Invoke-Pester -OutputFile ('TestResultsPS{0}.xml' -f $PSVersionTable.PSVersion) } diff --git a/CI/pipeline.yml b/CI/pipeline.yml index 4522521..ca0324c 100644 --- a/CI/pipeline.yml +++ b/CI/pipeline.yml @@ -17,7 +17,7 @@ jobs: vmImage: 'windows-latest' steps: - powershell: 'Install-Module -Name Pester -Force -SkipPublisherCheck' - displayName: 'Update Modules' + displayName: 'Update Pester' - powershell: './CI/PS-CI.ps1 ' displayName: 'Check Build Check Pack Test' - task: PublishTestResults@2