qa/bugzillaChecker.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-)
New commits: commit f5d505789484065cee10964ca60b5973a62ac621 Author: Xisco Fauli <[email protected]> AuthorDate: Mon Jan 21 11:51:53 2019 +0100 Commit: Xisco Fauli <[email protected]> CommitDate: Mon Jan 21 11:53:12 2019 +0100 QA: ignore ios/android bugs for now diff --git a/qa/bugzillaChecker.py b/qa/bugzillaChecker.py index 3ae853a..635a22f 100755 --- a/qa/bugzillaChecker.py +++ b/qa/bugzillaChecker.py @@ -350,6 +350,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'] != 'iOS' and row['component'] != 'Android Viewer' and \ movedToNewValue[2] not in cfg['configQA']['ignore']['confirmer'] and \ (rowVersion.startswith(versionsToCheck) or rowVersion == 'unspecified'): util_add_to_result(lResults, 'version_not_changed', movedToNewValue) commit ea4f8fb09591a3abfa755fa69022eb2449e7feb7 Author: Xisco Fauli <[email protected]> AuthorDate: Wed Jan 16 18:23:05 2019 +0100 Commit: Xisco Fauli <[email protected]> CommitDate: Mon Jan 21 11:53:12 2019 +0100 QA: Add a separator every 10 items in the list diff --git a/qa/bugzillaChecker.py b/qa/bugzillaChecker.py index c2ba268..3ae853a 100755 --- a/qa/bugzillaChecker.py +++ b/qa/bugzillaChecker.py @@ -429,8 +429,12 @@ def analyze_bugzilla_checkers(statList, bugzillaData, cfg): if dValue[idx][1] >= cfg['coloredReportPeriod']: background = Back.GREEN + count = idx + 1 print(background + "{:<3} | {:<58} | {} | {}".format( - str(idx + 1), common.urlShowBug + str(dValue[idx][0]), str(dValue[idx][1] ), str(dValue[idx][2]))) + str(count), common.urlShowBug + str(dValue[idx][0]), str(dValue[idx][1] ), str(dValue[idx][2]))) + + if count != len(dValue) and count % 10 == 0: + print('=' * 100) for k, v in statList['people'].items(): if not statList['people'][k]['name']: _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
