summaryrefslogtreecommitdiff
path: root/scripts/bk_tests/bk_win_unit.ps1
blob: 48ad3fe283a513c8dd3e32d75915034e4ea64971 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
echo "--- system details"
$Properties = 'Caption', 'CSName', 'Version', 'BuildType', 'OSArchitecture'
Get-CimInstance Win32_OperatingSystem | Select-Object $Properties | Format-Table -AutoSize
ruby -v
bundle --version

echo "--- bundle install"
bundle install --jobs=3 --retry=3 --without omnibus_package docgen chefstyle

echo "+++ bundle exec rake"
bundle exec rake spec:unit
bundle exec rake component_specs

exit $LASTEXITCODE