slacker-game/tox.ini

24 lines
328 B
INI
Raw Permalink Normal View History

2020-09-05 11:09:52 +02:00
[tox]
envlist = py
minversion = 3.3
isolated_build = True
[testenv]
deps =
flake8-builtins
isort
2020-09-06 10:51:54 +02:00
mypy
2020-09-05 11:09:52 +02:00
commands =
flake8
isort . --check --diff
2020-09-06 10:51:54 +02:00
mypy slacker_game
2020-09-05 11:09:52 +02:00
[flake8]
2020-09-06 17:02:12 +02:00
hang-closing = True
2020-09-05 11:09:52 +02:00
ignore = E226, E701, E704, W503
2020-09-06 17:02:12 +02:00
max-doc-length = 72
2020-09-05 11:09:52 +02:00
[isort]
balanced_wrapping = True
combine_as_imports = True