summaryrefslogtreecommitdiff
path: root/qa
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2020-04-09 19:23:18 +0200
committerXisco Fauli <xiscofauli@libreoffice.org>2020-04-09 19:24:00 +0200
commitbaa8939cfb373131124d61f3870b9cc2c0387472 (patch)
tree83b83f83ac3bd402636768a2606c7ae34d9fc971 /qa
parent10fdd8b8826ccce4263fb3c2d34fd1c7e3d32124 (diff)
QA: ignore unittests commits in blog report
Diffstat (limited to 'qa')
-rwxr-xr-xqa/createBlogReport.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/qa/createBlogReport.py b/qa/createBlogReport.py
index 061a54af..04c9396f 100755
--- a/qa/createBlogReport.py
+++ b/qa/createBlogReport.py
@@ -394,7 +394,8 @@ def analyze_bugzilla_data(statList, bugzillaData, cfg):
if commentMail == "libreoffice-commits@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")