From e516ad16062acd6263555a11bdbe4491486ca3bf Mon Sep 17 00:00:00 2001 From: Sebastian Rakel Date: Fri, 12 Sep 2025 21:19:02 +0200 Subject: [PATCH] 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 --- pwsh_module/command.tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwsh_module/command.tests.ps1 b/pwsh_module/command.tests.ps1 index ef7070b89..07c242cf8 100644 --- a/pwsh_module/command.tests.ps1 +++ b/pwsh_module/command.tests.ps1 @@ -14,7 +14,7 @@ BeforeAll { $common = @( 'Version', 'Debug', 'ErrorAction', 'ErrorVariable', 'InformationAction', 'InformationVariable', 'OutBuffer', 'OutVariable', 'PipelineVariable', - 'Verbose', 'WarningAction', 'WarningVariable', 'Confirm', 'Whatif' + 'Verbose', 'WarningAction', 'WarningVariable', 'Confirm', 'Whatif', 'ProgressAction' ) }