From 9e2a4992625df74b8a2ac92d1b7422e0b6f62ba9 Mon Sep 17 00:00:00 2001 From: Laurent Date: Thu, 26 Sep 2024 15:05:25 +0000 Subject: [PATCH] pyright: ignore "tests/repos" --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d0b7c96..f59c702 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -139,7 +139,7 @@ black = true [tool.pyright] include = ["src/refiners", "tests", "scripts"] strict = ["*"] -exclude = ["**/__pycache__", "tests/weights"] +exclude = ["**/__pycache__", "tests/weights", "tests/repos"] reportMissingTypeStubs = "warning" [tool.coverage.run]