qa/createBlogReport.py |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 06e324a806f882d4da6af2a43daebe6c2b96f1ee
Author:     Xisco Fauli <xiscofa...@libreoffice.org>
AuthorDate: Tue Aug 12 11:21:36 2025 +0200
Commit:     Xisco Fauli <xiscofa...@libreoffice.org>
CommitDate: Tue Aug 12 11:21:36 2025 +0200

    createBlogReport: ignore commits with ' test' in message
    
    Change-Id: Ia191894cf861483d47ba0e6a59cca2fa483bb030

diff --git a/qa/createBlogReport.py b/qa/createBlogReport.py
index 111e36ee..f2ac7744 100755
--- a/qa/createBlogReport.py
+++ b/qa/createBlogReport.py
@@ -388,8 +388,10 @@ def analyze_bugzilla_data(statList, bugzillaData, cfg):
                     if commentMail == 
"libreoffice-comm...@lists.freedesktop.org":
                         commentText = comment['text']
                         author =  commentText.split(' committed a patch 
related')[0]
+                        # Remove this line from the comment
+                        commentText = commentText.replace("Affected users are 
encouraged to test the fix and report feedback.", "")
                         if author not in bugFixers and 'uitest' not in 
commentText.lower() and\
-                                'unittest' not in commentText.lower():
+                                'unittest' not in commentText.lower() and ' 
test' not in commentText.lower():
                             bugFixers.append(author)
                             diffTime = (commentDate - creationDate).days
                             commentDay = commentDate.strftime("%Y-%m-%d")

Reply via email to