django-analytical/pyproject.toml
2022-03-10 15:50:29 +01:00

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"