Skip to content

Commit

Permalink
change to trigger a PR (#431)
Browse files Browse the repository at this point in the history
  • Loading branch information
TravisEz13 authored May 28, 2020
1 parent 957490e commit 560c997
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .vsts-ci/communityReleasePhase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
displayName: 'docker login'
condition: and( succeededOrFailed(), ne(variables['Channel'],''))

- pwsh: 'Install-module pester -Scope CurrentUser -Force'
- pwsh: Install-module Pester -Scope CurrentUser -Force -MaximumVersion 4.99
displayName: 'Install Pester'
condition: and( succeededOrFailed(), ne(variables['Channel'],''))

Expand Down
4 changes: 2 additions & 2 deletions .vsts-ci/phase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- pwsh: |
if ( '$env:CHANNEL' -eq '' ) { exit }
Install-module pester -Scope CurrentUser -Force
Install-module Pester -Scope CurrentUser -Force -MaximumVersion 4.99
displayName: Install Pester
condition: and( succeededOrFailed(), ne(variables['Channel'],''))
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
testResultsFiles: '**\test*.xml'
testRunTitle: $(ImageName)
mergeTestResults: true

- task: PublishTestResults@2
condition: and( succeededOrFailed(), ne(variables['Channel'],''))
displayName: Publish $(ImageName) dockerlint Results
Expand Down
2 changes: 1 addition & 1 deletion .vsts-ci/releasePhase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
displayName: 'Set SasUrl variable'
condition: and( succeededOrFailed(), ne(variables['Channel'],''))
- pwsh: 'Install-module pester -Scope CurrentUser -Force'
- pwsh: Install-module Pester -Scope CurrentUser -Force -MaximumVersion 4.99
displayName: 'Install Pester'
condition: and( succeededOrFailed(), ne(variables['Channel'],''))

Expand Down
2 changes: 1 addition & 1 deletion .vsts-ci/releasebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ stages:
- powershell: 'Get-ChildItem env:'
displayName: 'Capture Environment'

- powershell: 'Install-module pester -Scope CurrentUser -Force'
- powershell: Install-module Pester -Scope CurrentUser -Force -MaximumVersion 4.99
displayName: 'Install Pester'

- powershell: |
Expand Down
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ End {

if(!(Get-Module -ListAvailable pester -ErrorAction Ignore) -or $ForcePesterInstall.IsPresent)
{
Install-Module -Name pester -Scope CurrentUser -Force
Install-module Pester -Scope CurrentUser -Force -MaximumVersion 4.99
}

Write-Verbose -Message "logging to $logPath" -Verbose
Expand Down
2 changes: 1 addition & 1 deletion tools/.gitpod.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ USER root

RUN apt-get update \
&& apt-get --yes install docker \
&& pwsh -NoLogo -NoProfile -c "install-module -Name Pester -Scope CurrentUser -force"
&& pwsh -NoLogo -NoProfile -c "Install-module Pester -Scope CurrentUser -Force -MaximumVersion 4.99"

0 comments on commit 560c997

Please sign in to comment.