Skip to content

Commit 86f87dd

Browse files
committed
review: Add completion date in bugzilla comment
Signed-off-by: Mathieu Dubois-Briand <[email protected]>
1 parent 860ec0d commit 86f87dd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

swattool/review.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ def _prompt_bug_infos(build: swatbuild.Build,
6161
print("Please set the comment content")
6262
logurl = build.get_first_failure().get_log_url()
6363
if logurl:
64-
testinfos = " ".join([build.test, build.worker, build.branch])
64+
testinfos = " ".join([build.test, build.worker, build.branch,
65+
f'completed at {build.completed}'])
6566
bcomment = click.edit("\n".join([testinfos, logurl]),
6667
require_save=False)
6768
else:

0 commit comments

Comments
 (0)