[Libreoffice-commits] dev-tools.git: 4 commits - qa/bugzillaChecker.py
Xisco Fauli (via logerrit)
logerrit at kemper.freedesktop.org
Mon Jun 10 15:23:02 UTC 2019
qa/bugzillaChecker.py | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
New commits:
commit c87d86793455139a7705a26b39341797f31a9d77
Author: Xisco Fauli <xiscofauli at libreoffice.org>
AuthorDate: Mon Jun 10 17:21:55 2019 +0200
Commit: Xisco Fauli <xiscofauli at libreoffice.org>
CommitDate: Mon Jun 10 17:22:37 2019 +0200
QA: Ignore automated comments
diff --git a/qa/bugzillaChecker.py b/qa/bugzillaChecker.py
index 2070084..0b54709 100755
--- a/qa/bugzillaChecker.py
+++ b/qa/bugzillaChecker.py
@@ -289,7 +289,7 @@ def analyze_bugzilla_checkers(statList, bugzillaData, cfg):
if len(comments) > 0:
if rowStatus == 'UNCONFIRMED' and 'needsDevAdvice' not in rowKeywords:
- if comments[-1]['creator'] != creatorMail and \
+ if comments[-1]['creator'] != creatorMail and '[Automated Action]' not in comments[-1]['text'] and \
datetime.datetime.strptime(row['last_change_time'], "%Y-%m-%dT%H:%M:%SZ") < cfg['retestUnconfirmedPeriod']:
value = [ rowId, row['last_change_time'], comments[-1]['creator'] ]
util_add_to_result(lResults, 'unconfirmed_last_comment_not_from_reporter', value)
commit 22941893bd57219393241a7fd854f4b2ac070116
Author: Xisco Fauli <xiscofauli at libreoffice.org>
AuthorDate: Wed Jun 5 13:17:22 2019 +0200
Commit: Xisco Fauli <xiscofauli at libreoffice.org>
CommitDate: Mon Jun 10 17:22:37 2019 +0200
QA: ignore UI issues here
diff --git a/qa/bugzillaChecker.py b/qa/bugzillaChecker.py
index d604931..2070084 100755
--- a/qa/bugzillaChecker.py
+++ b/qa/bugzillaChecker.py
@@ -327,6 +327,7 @@ def analyze_bugzilla_checkers(statList, bugzillaData, cfg):
'regression' not in rowKeywords and 'bisected' not in rowKeywords and \
'easyHack' not in rowKeywords and 'needsUXEval' not in rowKeywords and \
row['component'] != 'Documentation' and \
+ row['component'] != 'UI' and \
row['component'] != 'iOS' and row['component'] != 'Android Viewer' and \
movedToNewValue[2] not in cfg['configQA']['ignore']['confirmer'] and \
(rowVersion.startswith(versionsToCheck) or rowVersion == 'unspecified'):
commit a6bb1098fe13e8983f38b58089569c77ee997012
Author: Xisco Fauli <xiscofauli at libreoffice.org>
AuthorDate: Wed Jun 5 13:16:46 2019 +0200
Commit: Xisco Fauli <xiscofauli at libreoffice.org>
CommitDate: Mon Jun 10 17:22:37 2019 +0200
QA: check perf issues here as well
diff --git a/qa/bugzillaChecker.py b/qa/bugzillaChecker.py
index c3df1b0..d604931 100755
--- a/qa/bugzillaChecker.py
+++ b/qa/bugzillaChecker.py
@@ -224,7 +224,7 @@ def analyze_bugzilla_checkers(statList, bugzillaData, cfg):
movedToNewValue = resultValue
if addedStatus == 'RESOLVED_FIXED' and rowStatus == 'RESOLVED_FIXED' and ('regression' in rowKeywords \
- or 'crash' in row['summary'].lower()):
+ or 'crash' in row['summary'].lower() or 'perf' in rowKeywords):
util_add_to_result(lResults, 'verify_fix', resultValue)
elif change['field_name'] == 'resolution':
commit ad217d89017c6f60da48a839cc3684d4996969d9
Author: Xisco Fauli <xiscofauli at libreoffice.org>
AuthorDate: Tue May 21 12:43:20 2019 +0200
Commit: Xisco Fauli <xiscofauli at libreoffice.org>
CommitDate: Mon Jun 10 17:22:37 2019 +0200
QA: Ignore needsDevAdvice here
diff --git a/qa/bugzillaChecker.py b/qa/bugzillaChecker.py
index 982b3ac..c3df1b0 100755
--- a/qa/bugzillaChecker.py
+++ b/qa/bugzillaChecker.py
@@ -288,7 +288,7 @@ def analyze_bugzilla_checkers(statList, bugzillaData, cfg):
common.util_check_bugzilla_mail(statList, commentMail, '', commentDate, rowId)
if len(comments) > 0:
- if rowStatus == 'UNCONFIRMED':
+ if rowStatus == 'UNCONFIRMED' and 'needsDevAdvice' not in rowKeywords:
if comments[-1]['creator'] != creatorMail and \
datetime.datetime.strptime(row['last_change_time'], "%Y-%m-%dT%H:%M:%SZ") < cfg['retestUnconfirmedPeriod']:
value = [ rowId, row['last_change_time'], comments[-1]['creator'] ]
More information about the Libreoffice-commits
mailing list