mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
8 lines
218 B
PowerShell
8 lines
218 B
PowerShell
Describe "PipxPackages" {
|
|
$pipxToolset = (Get-ToolsetContent).pipx
|
|
foreach($tool in $pipxToolset) {
|
|
It "${tool.package}" {
|
|
"${tool.cmd}" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
} |