From 86f87dd1a6f41b7f6bccec72a224c07ec7b2a011 Mon Sep 17 00:00:00 2001 From: Mathieu Dubois-Briand Date: Wed, 6 Nov 2024 18:10:08 +0100 Subject: [PATCH] review: Add completion date in bugzilla comment Signed-off-by: Mathieu Dubois-Briand --- swattool/review.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/swattool/review.py b/swattool/review.py index 609b126..ea471eb 100644 --- a/swattool/review.py +++ b/swattool/review.py @@ -61,7 +61,8 @@ def _prompt_bug_infos(build: swatbuild.Build, print("Please set the comment content") logurl = build.get_first_failure().get_log_url() if logurl: - testinfos = " ".join([build.test, build.worker, build.branch]) + testinfos = " ".join([build.test, build.worker, build.branch, + f'completed at {build.completed}']) bcomment = click.edit("\n".join([testinfos, logurl]), require_save=False) else: