Migrate pytest configs to native TOML and enable strict mode (#4087)

This commit is contained in:
correctmost 2026-01-06 19:52:46 -05:00 committed by GitHub
parent 8e0ff2d2a9
commit 0470495cb1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 2 deletions

View File

@ -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]