Files
pdfplumber/setup.cfg
T
2024-07-06 17:16:25 -04:00

21 lines
417 B
INI

[flake8]
# max-complexity = 10
max-line-length = 88
ignore =
# https://black.readthedocs.io/en/stable/the_black_code_style.html#slices
E203
# Impossible to obey both W503 and W504
W503
[tool:pytest]
addopts=--cov=pdfplumber --cov-report xml:coverage.xml --cov-report term
[tool.isort]
profile = "black"
[testenv]
deps=
-r requirements.txt
-r requirements-dev.txt
commands=python -m pytest