From 15f1d3de3b8c1afb9a7d81e0b885fbac95dd05d5 Mon Sep 17 00:00:00 2001 From: Mike Date: Fri, 22 May 2026 16:22:29 -0700 Subject: [PATCH] chore: update ruff ignore rules for PLC0415, PT030, PLW0108 --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index fb5fb3d..e0f2fe5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -121,8 +121,10 @@ allow-multiline = false "tests/*" = [ "INP001", # "Add an __init__.py" "PLR2004", # "Magic value used in comparison" + "PLW0108", # "Lambda may be unnecessary" - used with assertRaises "PT009", # "Use a regular assert instead of unittest-style" "PT027", # "Use pytest.raises instead of unittest-style" + "PT030", # "pytest.warns match parameter" - broad warnings intentional in tests "S101", # "Use of assert detected" "SLF001" # "Private member accessed" ]