summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2021-04-09 20:06:13 +0200
committerXisco Fauli <xiscofauli@libreoffice.org>2021-04-09 22:29:57 +0200
commit807d059d99e7b99fe45a712428befa17ffa44858 (patch)
tree67adf8e58bdcd18ae74ae31510ab90be4e9b098d /bin
parent0725ae6f1650077367fcefa55aeed7ba82c1fec5 (diff)
check-missing-unittests: ignore accessibility bugs for now
Change-Id: I4fe5ec4a05d841c1c3486d2f80e7220dc0a99c80 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113892 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/check-missing-unittests.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/check-missing-unittests.py b/bin/check-missing-unittests.py
index 33a6e36d67c1..b685d00993bf 100755
--- a/bin/check-missing-unittests.py
+++ b/bin/check-missing-unittests.py
@@ -188,8 +188,9 @@ def main(ignoredBugs):
priority = bug['priority']
break
- #Ignore open bugs and performance bugs
- if status and not isOpen(status) and 'perf' not in keywords:
+ #Ignore open bugs, performance bugs and accessibility bugs
+ if status and not isOpen(status) and 'perf' not in keywords \
+ and 'accessibility' not in keywords:
print(
"# {} - [{}] {} - [https://bugs.documentfoundation.org/show_bug.cgi?id={} tdf#{}]".format(
info[0], priority.upper(), info[1], bugId, bugId))