This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-10-26 18:07:08 +00:00
|
|
|
[tool.black]
|
|
|
|
target-version = ['py38']
|
|
|
|
exclude = 'node_modules'
|
2020-12-02 13:24:24 +00:00
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
multi_line_output = 3
|
|
|
|
include_trailing_comma = true
|
|
|
|
force_grid_wrap = 0
|
|
|
|
use_parentheses = true
|
|
|
|
line_length = 88
|
2020-12-05 21:08:42 +00:00
|
|
|
src_paths = ["authentik", "tests", "lifecycle"]
|
|
|
|
|
|
|
|
[tool.coverage.run]
|
|
|
|
source = ["authentik"]
|
|
|
|
relative_files = true
|
|
|
|
omit = [
|
|
|
|
"*/asgi.py",
|
|
|
|
"manage.py",
|
|
|
|
"*/migrations/*",
|
|
|
|
"*/apps.py",
|
|
|
|
"website/",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.coverage.report]
|
|
|
|
sort = "Cover"
|
|
|
|
skip_covered = true
|
|
|
|
precision = 2
|
|
|
|
exclude_lines = [
|
|
|
|
"pragma: no cover",
|
|
|
|
# Don't complain about missing debug-only code:
|
|
|
|
"def __unicode__",
|
|
|
|
"def __str__",
|
|
|
|
"def __repr__",
|
|
|
|
"if self.debug",
|
|
|
|
"if TYPE_CHECKING",
|
|
|
|
# Don't complain if tests don't hit defensive assertion code:
|
|
|
|
"raise AssertionError",
|
|
|
|
"raise NotImplementedError",
|
|
|
|
# Don't complain if non-runnable code isn't run:
|
|
|
|
"if 0:",
|
|
|
|
"if __name__ == .__main__.:",
|
|
|
|
]
|
|
|
|
show_missing = true
|