django-analytical/pyproject.toml
2022-02-04 03:14:50 +01:00

26 lines
403 B
TOML

[tool.bandit]
exclude = [
".git",
".idea",
".tox",
"build",
"dist",
"docs",
"tests",
]
[tool.black]
color = true
[tool.coverage.xml]
output = "tests/reports/coverage.xml"
[tool.isort]
color_output = true
profile = "black"
[tool.pylint.master]
output-format = "colorized"
[tool.pytest.ini_options]
addopts = "--junitxml=tests/reports/unittests.xml --color=yes --verbose"