From f9278e1de69258de83f3c203d36aebdd5dae1336 Mon Sep 17 00:00:00 2001 From: correctmost <134317971+correctmost@users.noreply.github.com> Date: Tue, 6 Jan 2026 15:38:58 -0500 Subject: [PATCH] Migrate pytest configs to native TOML and enable strict mode --- pyproject.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2a510fe0ea..31ce8d0f60 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -128,9 +128,12 @@ ignore_missing_imports = true targets = ["archinstall"] exclude = ["/tests"] -[tool.pytest.ini_options] +[tool.pytest] pythonpath = ["."] -addopts = "-s" +addopts = [ + "-s", + "--strict", +] testpaths = ["tests"] [tool.pylint.main]