From e3ec2fc7c4e26a4f5f9020d641928a72613d3f4e Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Thu, 26 Mar 2015 17:00:38 -0700 Subject: [PATCH] calamari_setup: Require test_image to be set Signed-off-by: Dan Mick --- tasks/calamari_setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tasks/calamari_setup.py b/tasks/calamari_setup.py index ab437b2b84293..908f4bda462cf 100644 --- a/tasks/calamari_setup.py +++ b/tasks/calamari_setup.py @@ -185,6 +185,8 @@ def calamari_install(config, cal_svr): test_image = config['test_image'] + if not test_image: + raise RuntimeError('Must supply test image') log.info('calamari test image: %s' % test_image) delete_iceball = False -- 2.39.5