powrap/tox.ini
2019-12-10 10:09:21 +01:00

29 lines
493 B
INI

[flake8]
;Because black
ignore = E203
max-line-length = 88
[tox]
envlist = py36, py37, py38, flake8, mypy, black
isolated_build = False
skip_missing_interpreters = True
[testenv]
deps = -r requirements-dev.txt
commands = pytest
[testenv:flake8]
deps = flake8
commands = flake8 tests/ powrap/
[testenv:pylint]
commands = pylint powrap/
[testenv:black]
deps = black
commands = black --check --diff tests/ powrap/
[testenv:mypy]
deps = mypy
commands = mypy --ignore-missing-imports powrap/