2017-03-28 07:18:32 -05:00
|
|
|
[tox]
|
2017-09-02 07:11:52 -05:00
|
|
|
envlist = python33,python34,python35,python36
|
|
|
|
|
|
|
|
[flake8]
|
|
|
|
max-line-length = 139
|
|
|
|
ignore =
|
|
|
|
# C901 func is too complex
|
|
|
|
C901,
|
|
|
|
# E126 continuation line over-indented for hanging indent
|
|
|
|
E126,
|
|
|
|
# E127 continuation line over-indented for visual indent
|
|
|
|
E127,
|
|
|
|
# E226 missing whitespace around arithmetic operator
|
|
|
|
E226,
|
|
|
|
# E231 missing whitespace after ','
|
|
|
|
E231,
|
|
|
|
# E302 expected 2 blank lines, found 1
|
|
|
|
E302,
|
|
|
|
# E305 expected 2 blank lines after class or function definition, found 1
|
|
|
|
E305,
|
|
|
|
# E731 do not assign a lambda expression, use a def
|
|
|
|
E731,
|
|
|
|
# W292 no newline at end of file
|
|
|
|
W292,
|
2018-10-25 08:14:46 -05:00
|
|
|
# W504 line break after binary operator
|
|
|
|
W504,
|
2017-03-28 07:18:32 -05:00
|
|
|
|
|
|
|
[testenv]
|
|
|
|
commands =
|
2017-03-28 11:30:12 -05:00
|
|
|
pip install -e .[tests]
|
2017-03-28 07:18:32 -05:00
|
|
|
pip install -r requirements.txt
|
2017-08-11 23:08:09 -05:00
|
|
|
python -m flake8
|
2019-02-22 20:46:37 -06:00
|
|
|
pylint --rcfile tests/.pylintrc buku
|
|
|
|
find . -iname "*.py" -not -path "./.tox/*" -exec pylint --rcfile tests/.pylintrc \{\} +
|
2017-03-28 07:18:32 -05:00
|
|
|
pytest --cov buku -vv {posargs}
|