Commit 3393ca94 authored by Raphael Defosseux's avatar Raphael Defosseux

chore(ci): concatenating deploy message into a single row

Signed-off-by: default avatarRaphael Defosseux <raphael.defosseux@eurecom.fr>
parent e42b2c03
......@@ -1034,12 +1034,14 @@ class Containerize():
status = False
imagesInfo += (GetImageInfo(mySSH, containerName))
mySSH.close()
HTML.CreateHtmlTestRowQueue('N/A', 'OK', [(imagesInfo)])
imagesInfo += ("\n")
if status:
HTML.CreateHtmlTestRowQueue('N/A', 'OK', ['Healthy deployment!'])
imagesInfo += ("Healthy deployment!")
HTML.CreateHtmlTestRowQueue('N/A', 'OK', [(imagesInfo)])
else:
self.exitStatus = 1
HTML.CreateHtmlTestRowQueue('N/A', 'KO', ['Unhealthy deployment! -- Check logs for reason!'])
imagesInfo += ("Unhealthy deployment! -- Check logs for reason!")
HTML.CreateHtmlTestRowQueue('N/A', 'KO', [(imagesInfo)])
def UndeployObject(self, HTML, RAN):
lIpAddr, lUserName, lPassWord, lSourcePath = GetCredentials(self)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment