ticketfrei3/tox.ini
2020-07-17 19:59:25 +02:00

24 lines
305 B
INI

[tox]
envlist = py38, flake8, black, pytest
[testenv]
deps = .
[testenv:flake8]
deps = flake8
commands =
flake8 kibicara tests
[testenv:black]
deps = black
commands =
black -S --check --diff kibicara tests
[testenv:pytest]
deps = pytest
commands =
pytest
[flake8]
max_line_length = 88