mirror of
https://github.com/jazzband/django-analytical.git
synced 2026-03-16 22:20:25 +00:00
20 lines
502 B
TOML
20 lines
502 B
TOML
[tool.bandit]
|
|
# Exclude/ignore of files and TOML reading is currently broken in Bandit
|
|
exclude = [".cache",".git",".github",".tox","build","dist","docs","tests"]
|
|
|
|
[tool.black]
|
|
color = true
|
|
|
|
[tool.coverage.xml]
|
|
output = "tests/coverage-report.xml"
|
|
|
|
[tool.isort]
|
|
color_output = true
|
|
profile = "black"
|
|
|
|
[tool.pylint.master]
|
|
output-format = "colorized"
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "--junitxml=tests/unittests-report.xml --color=yes --verbose"
|
|
DJANGO_SETTINGS_MODULE = "tests.testproject.settings"
|