From 322420c28f50ad9f7469e7db2a7a35755911d68c Mon Sep 17 00:00:00 2001 From: User Date: Tue, 9 Sep 2025 14:02:52 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Add=20isort=20configuration=20to?= =?UTF-8?q?=20enforce=20separate=20sorting=20for=20tests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index d0f1c8962d..8d86a62c88 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -67,3 +67,6 @@ ignore = [ [tool.ruff.lint.pyupgrade] # Preserve types, even if a file imports `from __future__ import annotations`. keep-runtime-typing = true + +[tool.ruff.lint.isort] +forced-separate = ["tests"]