mirror of
https://github.com/jsvine/pdfplumber.git
synced 2026-08-29 16:40:24 +08:00
21 lines
417 B
INI
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
|