cheese-shop/tox.ini

20 lines
344 B
INI

[tox]
envlist = py
minversion = 3.3
isolated_build = True
[testenv]
skip_install = True
deps =
flake8-builtins
isort[requirements]
commands =
flake8
isort . --check --diff
[flake8]
hang-closing = True
ignore = W503, E125, E225, E226, E227, E701, E704
; See https://github.com/PyCQA/pycodestyle/issues/906
;max-doc-length = 72