From bc9043bc3fb74045bf323856177019fdebef8cd9 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Wed, 4 Feb 2026 10:08:48 +0800 Subject: [PATCH] fix: update ruff exclude list to include tests directory --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 35eb5a73d..342ea629b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -76,7 +76,7 @@ dev = [ astrbot = "astrbot.cli.__main__:cli" [tool.ruff] -exclude = ["astrbot/core/utils/t2i/local_strategy.py", "astrbot/api/all.py"] +exclude = ["astrbot/core/utils/t2i/local_strategy.py", "astrbot/api/all.py", "tests"] line-length = 88 target-version = "py310"