lazip/tox.ini

21 lines
327 B
INI
Raw Permalink Normal View History

[tox]
envlist = py
minversion = 3.3
2020-06-18 18:01:47 +02:00
isolated_build = True
[testenv]
deps =
2020-06-19 09:14:22 +02:00
flake8
isort
2020-06-19 06:12:18 +02:00
mypy
commands =
flake8
isort . --check --dif
2020-06-19 06:12:18 +02:00
mypy lazip.py
[flake8]
hang-closing = True
ignore = W503, E125, E225, E226, E227, E701, E704
; See https://github.com/PyCQA/pycodestyle/issues/906
;max-doc-length = 72