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
|
[aliases]
test = pytest
[pycodestyle]
exclude = .eggs,ENV,build,docs/conf.py,venv
[yala]
radon mi args = --min C
pylint args = --disable=too-many-arguments,too-many-locals,too-many-instance-attributes,too-few-public-methods
[pydocstyle]
add-ignore = D105
[isort]
known_first_party = pyof,tests
multi_line_output = 4
[tool:pytest]
markers =
small: marks tests as small
medium: marks tests as medium
large: marks tests as large
[egg_info]
tag_build =
tag_date = 0
|