diff options
Diffstat (limited to 'qa/createBlogReport.py')
-rwxr-xr-x | qa/createBlogReport.py | 3 |
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") |