slacker-game/tox.ini

24 lines
328 B
INI

[tox]
envlist = py
minversion = 3.3
isolated_build = True
[testenv]
deps =
flake8-builtins
isort
mypy
commands =
flake8
isort . --check --diff
mypy slacker_game
[flake8]
hang-closing = True
ignore = E226, E701, E704, W503
max-doc-length = 72
[isort]
balanced_wrapping = True
combine_as_imports = True