From c9bf18646a3e59ae450921c5ff4572cd55741526 Mon Sep 17 00:00:00 2001 From: stumpylog <797416+stumpylog@users.noreply.github.com> Date: Thu, 27 Aug 2026 10:08:45 -0700 Subject: [PATCH] Chore: enable flake8-pytest-style (PT) default-subset ruff rules Zero current violations. Only the 6 PT codes ruff 0.16 enables by default; the full flake8-pytest-style linter has thousands of hits here and needs a separate, deliberate decision. --- pyproject.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 51aa5ee0e..8834a057c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -228,6 +228,12 @@ extend-select = [ "PLR1733", # https://docs.astral.sh/ruff/rules/#pylint-pl "PLR1736", # https://docs.astral.sh/ruff/rules/#pylint-pl "PLR2044", # https://docs.astral.sh/ruff/rules/#pylint-pl + "PT010", # https://docs.astral.sh/ruff/rules/#flake8-pytest-style-pt + "PT014", # https://docs.astral.sh/ruff/rules/#flake8-pytest-style-pt + "PT020", # https://docs.astral.sh/ruff/rules/#flake8-pytest-style-pt + "PT025", # https://docs.astral.sh/ruff/rules/#flake8-pytest-style-pt + "PT026", # https://docs.astral.sh/ruff/rules/#flake8-pytest-style-pt + "PT031", # https://docs.astral.sh/ruff/rules/#flake8-pytest-style-pt "PTH", # https://docs.astral.sh/ruff/rules/#flake8-use-pathlib-pth "Q", # https://docs.astral.sh/ruff/rules/#flake8-quotes-q "RSE", # https://docs.astral.sh/ruff/rules/#flake8-raise-rse