buku/tox.ini

63 lines
1.4 KiB
INI
Raw Permalink Normal View History

[tox]
2020-12-21 14:43:34 -06:00
envlist = python36,python37,python38,python39,pylint,flake8
[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,
[testenv]
usedevelop = true
deps = pytest
[testenv:python35]
extras = tests
commands =
pytest --cov buku -vv -m "not non_tox" {posargs}
[testenv:python36]
extras = tests
commands =
pytest --cov buku -vv -m "not non_tox" {posargs}
[testenv:python37]
extras = tests
commands =
pytest --cov buku -vv -m "not non_tox" {posargs}
[testenv:python38]
extras = tests
commands =
pytest --cov buku -vv -m "not non_tox" {posargs}
[testenv:pylint]
deps = pylint
2020-10-10 03:27:29 -05:00
whitelist_externals =
/usr/bin/find
commands =
find . -iname "*.py" -not -path "./.tox/*" -not -path "./build/*" -exec pylint --rcfile tests/.pylintrc \{\} +
[testenv:flake8]
deps = flake8
commands =
python -m flake8