Skip to content

Commit e516ad1

Browse files
sebastianrakelbastelfreak
authored andcommitted
CI: WinRM: Ignore ProgressAction parameter
We have a test that verifies all the parameters that bolt subcommands offer in powershell. Besides the bolt-provided parameters, Powershell adds own/internals parameters as well. Powershell 7.5 introduced a new parameter, ProgressAction, which we need to add to the exclude list. https://learn.microsoft.com/de-de/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7.5
1 parent 6a3d0c3 commit e516ad1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pwsh_module/command.tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ BeforeAll {
1414
$common = @(
1515
'Version', 'Debug', 'ErrorAction', 'ErrorVariable', 'InformationAction',
1616
'InformationVariable', 'OutBuffer', 'OutVariable', 'PipelineVariable',
17-
'Verbose', 'WarningAction', 'WarningVariable', 'Confirm', 'Whatif'
17+
'Verbose', 'WarningAction', 'WarningVariable', 'Confirm', 'Whatif', 'ProgressAction'
1818
)
1919
}
2020

0 commit comments

Comments
 (0)