diff --git a/pyproject.toml b/pyproject.toml index bbc3e34..03ed525 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -83,5 +83,13 @@ exclude_lines = [ "if TYPE_CHECKING:", ] +[tool.ruff.lint.extend-per-file-ignores] +"**/tests/*" = ["INP001"] + [tool.ruff.lint.flake8-type-checking] runtime-evaluated-base-classes = ["pydantic.BaseModel"] + +[tool.pytest.ini_options] +addopts = [ + "--import-mode=importlib", +] diff --git a/tests/__init__.py b/tests/__init__.py deleted file mode 100644 index e69de29..0000000