From 9bfd0eedcb55799fd94f5aa470b4049c04b1de2e Mon Sep 17 00:00:00 2001
From: David Hoese <david.hoese@ssec.wisc.edu>
Date: Sat, 19 Dec 2020 12:55:05 -0600
Subject: [PATCH] Try more error checking in ci tests

---
 ci_tests/run_basic_grb_test.sh      | 2 +-
 ci_tests/run_basic_postgres_test.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ci_tests/run_basic_grb_test.sh b/ci_tests/run_basic_grb_test.sh
index da4aa0d..704cdba 100755
--- a/ci_tests/run_basic_grb_test.sh
+++ b/ci_tests/run_basic_grb_test.sh
@@ -15,7 +15,7 @@ set -e
 source ci_tests/_tests_common.sh
 ns=$(./helpers/get_namespace.sh)
 source ci_tests/get_release_names.sh
-install_basic_grb_charts "ci_tests/basic_grb"
+install_basic_grb_charts "ci_tests/basic_grb" || error "Failed to install charts"
 
 # give kubernetes a bit to create the resources
 debug "Waiting for Kubernetes to deploy and schedule components..."
diff --git a/ci_tests/run_basic_postgres_test.sh b/ci_tests/run_basic_postgres_test.sh
index c07b54b..e86d56e 100755
--- a/ci_tests/run_basic_postgres_test.sh
+++ b/ci_tests/run_basic_postgres_test.sh
@@ -16,7 +16,7 @@ set -e
 source ci_tests/_tests_common.sh
 ns=$(./helpers/get_namespace.sh)
 source ci_tests/get_release_names.sh
-install_basic_postgres_charts "ci_tests/basic_postgres"
+install_basic_postgres_charts "ci_tests/basic_postgres" || error "Failed to install charts"
 
 # give kubernetes a bit to create the resources
 debug "Waiting for Kubernetes to deploy and schedule components..."
-- 
GitLab