ticketfrei3/tox.ini
2020-07-25 13:32:01 +02:00

26 lines
331 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
pytest-asyncio
commands =
pytest tests
[flake8]
max_line_length = 88