Skip to content

Commit

Permalink
Handle errors for windows unit test
Browse files Browse the repository at this point in the history
Signed-off-by: Sunjay Bhatia <[email protected]>
  • Loading branch information
Amin Jamali authored and sunjayBhatia committed Aug 8, 2016
1 parent 422b0cb commit d9bb4d6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ci/tasks/test-unit.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,8 @@ $file = Join-Path -Path $PWD jobsupervisor/windows_job_supervisor.go

go.exe install github.com/cloudfoundry/bosh-agent/vendor/github.com/onsi/ginkgo/ginkgo
ginkgo.exe -r -keepGoing -skipPackage="integration,vendor"
if ($LastExitCode -ne 0)
{
Write-Error $_
exit 1
}

0 comments on commit d9bb4d6

Please sign in to comment.