From 3e08360011f43b8d97fec69bcfa20fbcdc61383a Mon Sep 17 00:00:00 2001 From: Robb Kidd Date: Mon, 4 Nov 2019 15:57:24 -0500 Subject: add more error checks to hab package tests The PowerShell scripts calling PowerShell scripts was apparently swallowing the errors being thrown from inner layers. Check the error level of those scripts and throw another error if need be. Signed-off-by: Robb Kidd --- habitat/tests/test.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'habitat') diff --git a/habitat/tests/test.ps1 b/habitat/tests/test.ps1 index 4e28866657..640507428a 100644 --- a/habitat/tests/test.ps1 +++ b/habitat/tests/test.ps1 @@ -19,4 +19,5 @@ $test_result = Invoke-Pester -Strict -PassThru -Script @{ if ($test_result.FailedCount -ne 0) { Exit $test_result.FailedCount } Write-Host "--- :alembic: Functional Tests" -powershell -File "./habitat/tests/spec.ps1" -PackageIdentifier $PackageIdentifier \ No newline at end of file +powershell -File "./habitat/tests/spec.ps1" -PackageIdentifier $PackageIdentifier +if (-not $?) { throw "functional spec suite failed" } -- cgit v1.2.1