From: yayogev Date: Thu, 24 Aug 2017 13:15:03 +0000 (+0300) Subject: display message if all containers are running X-Git-Tag: opnfv-5.1.RC1~58 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=de9f324ff628a6d9e870f06e6e216f65382a978b;p=calipso.git display message if all containers are running Change-Id: I88be58e086ff356d408d70ddd124a6183906aeea Signed-off-by: yayogev --- diff --git a/calipso/tests/functest/smoke_test.py b/calipso/tests/functest/smoke_test.py old mode 100644 new mode 100755 index 373a7c3..09b394f --- a/calipso/tests/functest/smoke_test.py +++ b/calipso/tests/functest/smoke_test.py @@ -86,4 +86,6 @@ if __name__ == '__main__': for image in ["calipso-{}".format(i) for i in IMAGES_TO_SEARCH]: if not image_checker.verify_image_is_up(image): ret = False + if ret: + print("All containers are running") sys.exit(0 if ret else 1)