Skip to content

Commit 75cefce

Browse files
committed
chore(sqlalchemy): drop dead pyright exclude and ruff per-file-ignore for test_sqlalchemy
Two more pyproject.toml patterns surviving from PR #4340 that point at files no longer on disk: * ``[tool.pyright].exclude`` — ``tests/unit/test_contrib/test_sqlalchemy.py`` * ``[tool.ruff.lint.per-file-ignores]`` — ``tests/unit/test_contrib/test_sqlalchemy/**/*.*`` The single-file path and the directory-glob both matched zero files once the contrib SQLAlchemy test suite was deleted alongside the package. ``make lint`` (ruff, mypy, pyright, slotscheck) is clean without them, confirming both patterns were unreachable. Same dead-pattern cleanup as commits a4bd03c and 5494be3.
1 parent a1e33fb commit 75cefce

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,6 @@ exclude = [
333333
"litestar/plugins/pydantic/plugins/init.py",
334334
"litestar/plugins/pydantic/plugins/schema.py",
335335
"litestar/plugins/pydantic/dto_factory.py",
336-
"tests/unit/test_contrib/test_sqlalchemy.py",
337336
"tests/unit/test_plugins/test_pydantic/test_openapi.py",
338337
"tests/unit/test_repository/test_generic_mock_repository.py",
339338
"**/node_modules/**",
@@ -497,7 +496,6 @@ known-first-party = ["litestar", "tests", "examples"]
497496
"UP045",
498497
"RUF043",
499498
]
500-
"tests/unit/test_contrib/test_sqlalchemy/**/*.*" = ["UP006"]
501499
"tests/unit/test_openapi/test_typescript_converter/test_converter.py" = ["W293"]
502500
"tests/unit/test_typing.py" = ["UP006", "UP035"]
503501
"tools/**/*.*" = ["D", "ARG", "EM", "TRY", "G", "FBT"]

0 commit comments

Comments
 (0)