Skip to content

Commit e88ac4f

Browse files
committed
Fix dependency version reporting
1 parent 9f4403f commit e88ac4f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tools/appveyor.psm1

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,13 @@ function Invoke-AppveyorTest {
137137
# Run all tests
138138
Import-Module PSScriptAnalyzer
139139
Import-Module Pester
140+
141+
Write-Verbose -Verbose "Module versions:"
142+
Get-Module PSScriptAnalyzer,Pester,PowershellGet -ErrorAction SilentlyContinue |
143+
ForEach-Object {
144+
Write-Verbose -Verbose "$($_.Name): $($_.Version)"
145+
}
146+
140147
$configuration = [PesterConfiguration]::Default
141148
$configuration.CodeCoverage.Enabled = $false
142149
$configuration.Output.Verbosity = 'Normal'

0 commit comments

Comments
 (0)