mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
* [macOS] Refactor Common.Helpers * Update readme file * Remove unnecessary double quotes --------- Co-authored-by: Alexey Ayupov <“alexey.ayupov@akvelon.com”>
13 lines
378 B
PowerShell
13 lines
378 B
PowerShell
|
|
Import-Module "$PSScriptRoot/../helpers/Common.Helpers.psm1"
|
|
|
|
$os = Get-OSVersion
|
|
|
|
Describe "PipxPackages" -Skip:($os.IsVentura -or $os.IsSonoma) {
|
|
$pipxToolset = (Get-ToolsetContent).pipx
|
|
$testCases = $pipxToolset | ForEach-Object { @{package = $_.package; cmd = $_.cmd} }
|
|
It "<package>" -TestCases $testCases {
|
|
"$cmd" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|