fix pytest settings

This commit is contained in:
Robert Kaussow 2023-02-09 21:03:35 +01:00
parent cdcb339416
commit e121901e4f
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0

View File

@ -69,6 +69,14 @@ enable = true
style = "semver"
vcs = "git"
[tool.pytest.ini_options]
addopts = "ansiblelater --cov=ansiblelater --cov-report=xml:coverage.xml --cov-report=term --cov-append --no-cov-on-fail"
filterwarnings = [
"ignore::FutureWarning",
"ignore::DeprecationWarning",
"ignore:.*pep8.*:FutureWarning",
]
[tool.coverage.run]
omit = ["**/test/*"]