diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2020-04-09 19:23:18 +0200 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2020-04-09 19:24:00 +0200 |
commit | baa8939cfb373131124d61f3870b9cc2c0387472 (patch) | |
tree | 83b83f83ac3bd402636768a2606c7ae34d9fc971 /qa | |
parent | 10fdd8b8826ccce4263fb3c2d34fd1c7e3d32124 (diff) |
QA: ignore unittests commits in blog report
Diffstat (limited to 'qa')
-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") |