gitlab-ci: port lint_* job to Debian/bookworm for stability

This saves us from being surprised by new rules in pylint, pyflakes, etc
like:
https://gitlab.com/FestplattenSchnitzel/fdroidserver/-/jobs/3895256515
This commit is contained in:
Hans-Christoph Steiner 2023-03-08 22:18:22 +01:00
parent ae2b33dab3
commit 4282d34343
2 changed files with 20 additions and 8 deletions

View file

@ -52,8 +52,6 @@ confidence = ["HIGH", "INFERENCE"]
# TODO many of these could be fixed if someone wants to spend the time
disable = [
"broad-exception-caught",
"broad-exception-raised",
"consider-iterating-dictionary",
"consider-using-sys-exit",
"invalid-name",
@ -65,7 +63,6 @@ disable = [
"no-else-raise",
"no-else-return",
"no-member",
"pointless-exception-statement",
"subprocess-run-check",
"use-dict-literal",
]