qa/createBlogReport.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
New commits: commit baa8939cfb373131124d61f3870b9cc2c0387472 Author: Xisco Fauli <[email protected]> AuthorDate: Thu Apr 9 19:23:18 2020 +0200 Commit: Xisco Fauli <[email protected]> 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 == "[email protected]": 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") _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
