Code Review
/
calipso.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
95798fe
)
bug fix: show all missing images
73/39673/1
author
yayogev
<yaronyogev@gmail.com>
Sun, 20 Aug 2017 14:06:02 +0000
(17:06 +0300)
committer
yayogev
<yaronyogev@gmail.com>
Sun, 20 Aug 2017 14:06:02 +0000
(17:06 +0300)
iwhen multiple images are missing, it would only display the first one
Change-Id: I09cdd0f575814b0904e4a9df0e9cb2e691037899
Signed-off-by: yayogev <yaronyogev@gmail.com>
app/install/test/smoke_test.py
patch
|
blob
|
history
diff --git
a/app/install/test/smoke_test.py
b/app/install/test/smoke_test.py
index
909648b
..
373a7c3
100644
(file)
--- a/
app/install/test/smoke_test.py
+++ b/
app/install/test/smoke_test.py
@@
-84,5
+84,6
@@
if __name__ == '__main__':
image_checker = DockerImageCheck()
ret = True
for image in ["calipso-{}".format(i) for i in IMAGES_TO_SEARCH]:
- ret = ret and image_checker.verify_image_is_up(image)
+ if not image_checker.verify_image_is_up(image):
+ ret = False
sys.exit(0 if ret else 1)