From 0470495cb18a4319a5a9c67e151f640b72ef7982 Mon Sep 17 00:00:00 2001 From: correctmost <134317971+correctmost@users.noreply.github.com> Date: Tue, 6 Jan 2026 19:52:46 -0500 Subject: [PATCH] Migrate pytest configs to native TOML and enable strict mode (#4087) --- pyproject.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2a510fe0..31ce8d0f 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]