mirror of
https://github.com/actions/runner-images.git
synced 2025-12-26 19:38:57 +08:00
12 lines
381 B
PowerShell
12 lines
381 B
PowerShell
|
|
Import-Module "$PSScriptRoot/../helpers/Common.Helpers.psm1"
|
|
|
|
$os = Get-OSVersion
|
|
|
|
Describe "PipxPackages" -Skip:($os.IsVentura -or $os.IsVenturaArm64) {
|
|
$pipxToolset = Get-ToolsetValue "pipx"
|
|
$testCases = $pipxToolset | ForEach-Object { @{package = $_.package; cmd = $_.cmd} }
|
|
It "<package>" -TestCases $testCases {
|
|
"$cmd" | Should -ReturnZeroExitCode
|
|
}
|
|
} |