[Libreoffice-commits] dev-tools.git: qa/createBlogReport.py
Xisco Fauli (via logerrit)
logerrit at kemper.freedesktop.org
Thu Apr 9 17:24:45 UTC 2020
qa/createBlogReport.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit baa8939cfb373131124d61f3870b9cc2c0387472
Author: Xisco Fauli <xiscofauli at libreoffice.org>
AuthorDate: Thu Apr 9 19:23:18 2020 +0200
Commit: Xisco Fauli <xiscofauli at libreoffice.org>
CommitDate: Thu Apr 9 19:24:00 2020 +0200
QA: ignore unittests commits in blog report
diff --git a/qa/createBlogReport.py b/qa/createBlogReport.py
index 061a54a..04c9396 100755
--- a/qa/createBlogReport.py
+++ b/qa/createBlogReport.py
@@ -394,7 +394,8 @@ def analyze_bugzilla_data(statList, bugzillaData, cfg):
if commentMail == "libreoffice-commits at lists.freedesktop.org":
commentText = comment['text']
author = commentText.split(' committed a patch related')[0]
- if author not in bugFixers and 'uitest' not in commentText.lower():
+ if author not in bugFixers and 'uitest' not in commentText.lower() and\
+ 'unittest' not in commentText.lower():
bugFixers.append(author)
diffTime = (commentDate - creationDate).days
commentDay = commentDate.strftime("%Y-%m-%d")
More information about the Libreoffice-commits
mailing list