mirror of https://github.com/celery/kombu.git
23 lines
482 B
TOML
23 lines
482 B
TOML
[tool.codespell]
|
|
ignore-words-list = "assertin"
|
|
skip = "./.*,docs/AUTHORS.txt,docs/history/*,docs/spelling_wordlist.txt,Changelog.rst,CONTRIBUTORS.txt,*.key"
|
|
|
|
[tool.coverage.run]
|
|
branch = true
|
|
cover_pylib = false
|
|
include = ["*kombu/*"]
|
|
omit = ["kombu.tests.*"]
|
|
|
|
[tool.coverage.report]
|
|
exclude_lines = [
|
|
"pragma: no cover",
|
|
"if TYPE_CHECKING:",
|
|
"except ImportError:"
|
|
]
|
|
omit = [
|
|
"*/python?.?/*",
|
|
"*/site-packages/*",
|
|
"*/pypy/*",
|
|
"*kombu/utils/debug.py",
|
|
]
|