Migrate pytest configs to native TOML and enable strict mode (#4087)
This commit is contained in:
parent
8e0ff2d2a9
commit
0470495cb1
|
|
@ -128,9 +128,12 @@ ignore_missing_imports = true
|
||||||
targets = ["archinstall"]
|
targets = ["archinstall"]
|
||||||
exclude = ["/tests"]
|
exclude = ["/tests"]
|
||||||
|
|
||||||
[tool.pytest.ini_options]
|
[tool.pytest]
|
||||||
pythonpath = ["."]
|
pythonpath = ["."]
|
||||||
addopts = "-s"
|
addopts = [
|
||||||
|
"-s",
|
||||||
|
"--strict",
|
||||||
|
]
|
||||||
testpaths = ["tests"]
|
testpaths = ["tests"]
|
||||||
|
|
||||||
[tool.pylint.main]
|
[tool.pylint.main]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue