File size: 383 Bytes
f27b882 adea8c3 f27b882 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | [tool.coverage.run]
source = ["codelens_env", "app"]
omit = ["tests/*", "scripts/*", "*/migrations/*"]
[tool.coverage.report]
fail_under = 80
show_missing = true
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
"raise NotImplementedError",
]
[tool.pylint.messages_control]
disable = ["C0114", "C0115", "C0116"] # disable missing-docstring warnings
|