From f9992d8d7a91451e427a499667f4cec398e579a3 Mon Sep 17 00:00:00 2001 From: Greyson LaLonde Date: Wed, 8 Oct 2025 17:04:13 -0400 Subject: [PATCH] chore: exclude tests from ruff linting --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 56abd3d60..dd2344578 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,10 @@ dev = [ [tool.ruff] exclude = [ "lib/crewai/src/crewai/cli/templates", + "lib/crewai/tests/", + "lib/crewai-tools/tests/", ] +force-exclude = true fix = true target-version = "py310"