From 8853969813a2bd25ea19a3498a35e96dedeeb186 Mon Sep 17 00:00:00 2001 From: Arun Babu Neelicattu Date: Tue, 12 Mar 2024 15:28:12 +0100 Subject: [PATCH] chore: make ruff exclude more specific --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 10f1bf89a3f..557e33c3e22 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -93,7 +93,10 @@ build-backend = "poetry.core.masonry.api" extend-exclude = [ "docs/*", # External to the project's coding standards - "tests/**/fixtures/*", + "tests/fixtures/git/*", + "tests/fixtures/project_with_setup*/*", + "tests/masonry/builders/fixtures/pep_561_stub_only*/*", + "tests/utils/fixtures/setups/*", ] fix = true line-length = 88