From e59836909bc85310b493071fe9c84e3e9a0f29af Mon Sep 17 00:00:00 2001 From: Andres Contreras Date: Tue, 10 Feb 2026 23:19:48 +0100 Subject: [PATCH] fix: remove venvPath/venv from pyright config to prevent CI hang The venvPath and venv settings conflict with uv run's environment management, causing pyright's Node.js process to hang indefinitely. Replace with explicit include=["src"] to scope type checking. --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fa1f7ff5..c539a643 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -109,8 +109,7 @@ known-first-party = ["fireflyframework_genai"] [tool.pyright] pythonVersion = "3.13" typeCheckingMode = "standard" -venvPath = "." -venv = ".venv" +include = ["src"] exclude = ["tests/**", "examples/**"] [tool.pytest.ini_options]