From 2dffa82c907a894dbc2f0570091f7fe26cd166f7 Mon Sep 17 00:00:00 2001 From: Sachaa-Thanasius Date: Tue, 3 Sep 2024 19:35:48 +0530 Subject: [PATCH] Fix pyright include settings for CI. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index cc0b5af..8edbd64 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -201,6 +201,7 @@ keep-runtime-typing = true # -------- Type-checker config [tool.pyright] +include = ["src/deferred", "tests", "benchmark"] pythonVersion = "3.9" pythonPlatform = "All" typeCheckingMode = "strict"