From 649a70aa6479f4e95778109ddc2b10d8550baaa5 Mon Sep 17 00:00:00 2001 From: Andres Contreras Date: Tue, 10 Feb 2026 23:27:13 +0100 Subject: [PATCH] fix: use pyright basic mode for CI stability --- pyproject.toml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 736b93c2..0f941a8d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -108,15 +108,10 @@ known-first-party = ["fireflyframework_genai"] [tool.pyright] pythonVersion = "3.13" -typeCheckingMode = "standard" +typeCheckingMode = "basic" include = ["src"] exclude = ["tests/**", "examples/**"] -reportAttributeAccessIssue = false -reportPossiblyUnboundVariable = "warning" -reportCallIssue = "warning" -reportArgumentType = "warning" -reportOptionalMemberAccess = "warning" -reportMissingImports = "warning" + [tool.pytest.ini_options] asyncio_mode = "auto"