summaryrefslogtreecommitdiff
path: root/.expeditor/scripts/bk_win_unit.ps1
blob: f1f28ade05462172dc75be38103cbed0ae0130d6 (plain)
1
2
3
4
5
6
7
8
9
$CurrentDirectory = Split-Path -Path $MyInvocation.MyCommand.Definition -Parent
$PrepScript = Join-Path $CurrentDirectory "bk_win_prep.ps1"
Invoke-Expression $PrepScript

echo "+++ bundle exec rake"
bundle exec rake spec:unit
if (-not $?) { throw "Chef unit tests failing." }
bundle exec rake component_specs
if (-not $?) { throw "Chef component specs failing." }