diff --git a/backend/pyproject.toml b/backend/pyproject.toml index fca22205..f50563de 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -52,6 +52,13 @@ files = ["app", "scripts"] mypy_path = ["typings"] show_error_codes = true +[[tool.mypy.overrides]] +module = ["tests.*"] +ignore_errors = true + +[tool.ruff.lint.per-file-ignores] +"tests/**/*.py" = ["ALL"] + [tool.pytest.ini_options] asyncio_default_fixture_loop_scope = "function"