Files
pdfplumber/setup.cfg
T

19 lines
409 B
INI
Raw Normal View History

2020-07-29 19:12:42 -04:00
[flake8]
# max-complexity = 10
max-line-length = 88
ignore =
E203 # https://black.readthedocs.io/en/stable/the_black_code_style.html#slices
W503 # Impossible to obey both W503 and W504
2020-07-29 19:12:42 -04:00
[tool:pytest]
addopts=--cov=pdfplumber --cov-report xml:coverage.xml --cov-report term
2021-12-09 22:27:51 -05:00
[tool.isort]
profile = "black"
2015-08-23 23:12:56 -04:00
[testenv]
2017-02-25 13:23:51 -05:00
deps=
2020-07-25 09:13:30 -04:00
-r requirements.txt
-r requirements-dev.txt
commands=python -m pytest