1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
[tool.poetry]
name = "diff_cover"
version = "10.1.0"
description = "Run coverage and linting reports on diffs"
authors = ["See Contributors"]
homepage = "https://github.com/Bachmann1234/diff-cover"
repository = "https://github.com/Bachmann1234/diff-cover"
license = "Apache-2.0"
readme = "README.rst"
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
]
packages = [
{ include = "diff_cover" }
]
include = [
{path = 'templates/*.txt'},
{path = 'templates/*.html'},
{path = 'templates/*.css'},
{path = 'templates/*.md'},
{path = 'tests/*', format = 'sdist'},
]
[tool.poetry.scripts]
diff-cover = 'diff_cover.diff_cover_tool:main'
diff-quality = 'diff_cover.diff_quality_tool:main'
[tool.poetry.dependencies]
python = ">=3.10"
Pygments = "^2.19.1"
Jinja2 = ">=2.7.1"
pluggy = ">=0.13.1,<2"
chardet = ">=3.0.0"
tomli = {version = ">=1.2.1", optional = true}
[tool.poetry.group.dev.dependencies]
pytest-cov = ">=6.1.1,<8.0.0"
pytest-datadir = "^1.5.0"
pytest-mock = "^3.14.0"
pytest-xdist = "^3.6.1"
pycodestyle = ">=2.9.1"
flake8-pyproject = "^1.2.3"
pyflakes = "^3.3.2"
pylint = "^3.3.4"
pylint-pytest = "^1.1.8"
pydocstyle = "^6.1.1"
black = "^25.1.0"
isort = "^6.0.1"
doc8 = "1.1.2"
ruff = ">=0.11.10,<0.15.0"
[tool.poetry.extras]
toml = ["tomli"]
[build-system]
requires = ["poetry-core>=1.0.7"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py39']
include = '\.pyi?$'
exclude = "tests/fixtures/*|\\.venv/*"
[tool.isort]
profile = "black"
extend_skip = "tests/fixtures/|\\.venv/"
[tool.pylint.master]
max-line-length = 100
load-plugins = [
"pylint_pytest",
]
ignore = [
".venv",
"tests/fixtures"
]
ignore-paths = ["tests/fixtures/.*"]
[tool.pylint."messages control"]
enable = ["all"]
disable = [
# allow TODO comments
"fixme",
# allow disables
"locally-disabled",
"suppressed-message",
# covered by isort
"ungrouped-imports",
# allow classes and functions w/o docstring
"missing-docstring",
# hard number checks can be ignored, because they are covered in code reviews
"too-many-instance-attributes",
"too-many-arguments",
"too-many-locals",
"too-many-branches",
"too-few-public-methods",
"too-many-nested-blocks",
"too-many-public-methods",
# currently some code seems duplicated for pylint
"duplicate-code",
# we are a command line tool and don't want to show all internals
"raise-missing-from",
]
[tool.pylint.basic]
good-names = [
"_",
"i",
"setUp",
"tearDown",
"e",
"ex",
]
no-docstring-rgx = "^_"
[tool.flake8]
max-line-length = 100
exclude = [
".venv",
"tests/fixtures"
]
ignore = [
"E501", # line too long
"W503", # line break before binary operator
"E203", # whitespace before ':', conflicts with black
]
select = [
"C901", # flake8-mccabe
"E", # flake8-pycodestyle
"F", # flake8-pyflakes
"W", # flake8-pycodestyle
]
per-file-ignores = [
"diff_cover/tests/*: E501", # suppression for __init__
"diff_cover/tests/fixtures/*: E,F,W"
]
[tool.coverage.run]
branch = true
relative_files = true
parallel = true
concurrency = ["multiprocessing"]
source = ["diff_cover"]
omit = ["./tests/*"]
[tool.coverage.report]
show_missing = true
exclude_also = [
"if typing.TYPE_CHECKING:",
"if TYPE_CHECKING:",
"if __name__ == \"__main__\":",
"raise NotImplementedError",
"raise AssertionError",
"^\\s*pass\\s*$",
]
[tool.coverage.html]
show_contexts = true
skip_covered = false
[tool.pytest.ini_options]
addopts = "--strict-markers"
xfail_strict = true
markers = [
"disable_all_files_exist: disables the fixture patch_so_all_files_exist",
]
[tool.doc8]
max_line_length = 120
|