We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8445e36 commit fbf25d6Copy full SHA for fbf25d6
Cassiopee/KCore/test/notifyCassiopee.py
@@ -267,14 +267,12 @@ def parseInstallLogs(userProd):
267
installLogs = sorted(glob(os.path.join("/stck/cassiope/git/logs/", f"log_*_{userProd}_*")))
268
for installLog in installLogs:
269
with open(installLog, 'r') as f: contents = f.readlines()
270
- print(len(contents))
271
# Find start lines of each module
272
startLine = 0
273
endMarker = "correctly installed."
274
for lineNo, line in enumerate(contents):
275
if endMarker in line:
276
startLine = lineNo+1
277
- print(line, startLine)
278
if startLine < len(contents):
279
# Print log of the module that did not complete successfully
280
messageText += f"\n\nInstall log:\n-----------\n\n"
0 commit comments