mirror of
https://github.com/jazzband/django-analytical.git
synced 2026-03-16 22:20:25 +00:00
26 lines
403 B
TOML
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"
|