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 9f4403f commit e88ac4fCopy full SHA for e88ac4f
tools/appveyor.psm1
@@ -137,6 +137,13 @@ function Invoke-AppveyorTest {
137
# Run all tests
138
Import-Module PSScriptAnalyzer
139
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
147
$configuration = [PesterConfiguration]::Default
148
$configuration.CodeCoverage.Enabled = $false
149
$configuration.Output.Verbosity = 'Normal'
0 commit comments