Files
runner-images-sangeeth/images/windows/scripts/build/Install-CommonUtils.ps1
2023-11-15 11:24:45 +01:00

8 lines
222 B
PowerShell

$commonPackages = (Get-ToolsetContent).choco.common_packages
foreach ($package in $commonPackages)
{
Choco-Install -PackageName $package.name -ArgumentList $package.args
}
Invoke-PesterTests -TestFile "ChocoPackages"