From 22f23ea9749ac34523289913d14b1454d69533bb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ale=C5=A1=20Mr=C3=A1zek?= Date: Thu, 6 Aug 2026 23:02:04 +0200 Subject: [PATCH] .gitlab-ci.yml: python:check-code: allow failure For now, it's not worth changing working code just to satisfy the linter. The updated rules will apply to new code and help guide future refactoring. --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e4072d694..9082c381f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -894,6 +894,7 @@ python:check:code: script: - poetry install --all-extras --only main,dev,lint - poe check-code + allow_failure: true python:test:examples: <<: *python -- 2.47.3