We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 860ec0d commit 86f87ddCopy full SHA for 86f87dd
swattool/review.py
@@ -61,7 +61,8 @@ def _prompt_bug_infos(build: swatbuild.Build,
61
print("Please set the comment content")
62
logurl = build.get_first_failure().get_log_url()
63
if logurl:
64
- testinfos = " ".join([build.test, build.worker, build.branch])
+ testinfos = " ".join([build.test, build.worker, build.branch,
65
+ f'completed at {build.completed}'])
66
bcomment = click.edit("\n".join([testinfos, logurl]),
67
require_save=False)
68
else:
0 commit comments