diff options
author | yayogev <yaronyogev@gmail.com> | 2017-08-24 16:15:03 +0300 |
---|---|---|
committer | yayogev <yaronyogev@gmail.com> | 2017-08-24 16:15:03 +0300 |
commit | de9f324ff628a6d9e870f06e6e216f65382a978b (patch) | |
tree | b8f808ddb0689bc5155d57e18ef26553b219d305 | |
parent | 399a24677d07cb2405ac2fd01d7cce8959e4ab43 (diff) |
display message if all containers are running
Change-Id: I88be58e086ff356d408d70ddd124a6183906aeea
Signed-off-by: yayogev <yaronyogev@gmail.com>
-rwxr-xr-x[-rw-r--r--] | calipso/tests/functest/smoke_test.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/calipso/tests/functest/smoke_test.py b/calipso/tests/functest/smoke_test.py index 373a7c3..09b394f 100644..100755 --- 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) |