2020-07-29 19:12:42 -04:00
|
|
|
[flake8]
|
2020-07-29 22:44:03 -04:00
|
|
|
# max-complexity = 10
|
2020-07-29 19:13:06 -04:00
|
|
|
max-line-length = 88
|
|
|
|
|
ignore =
|
2024-07-06 16:29:15 -04:00
|
|
|
# https://black.readthedocs.io/en/stable/the_black_code_style.html#slices
|
|
|
|
|
E203
|
|
|
|
|
# Impossible to obey both W503 and W504
|
|
|
|
|
W503
|
2024-08-05 15:42:04 -04:00
|
|
|
# https://github.com/psf/black/issues/3887
|
|
|
|
|
E704
|
2020-07-29 19:12:42 -04:00
|
|
|
|
2020-07-29 22:44:03 -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
|