ticketfrei3/tox.ini

26 lines
332 B
INI
Raw Normal View History

[tox]
envlist = py310, flake8, black, pytest
[testenv]
deps = .
[testenv:flake8]
deps = flake8
commands =
2020-07-18 20:26:36 +00:00
flake8 kibicara tests
2020-07-02 12:30:25 +00:00
[testenv:black]
deps = black
commands =
2020-07-18 20:26:36 +00:00
black -S --check --diff kibicara tests
[testenv:pytest]
2020-07-18 20:26:36 +00:00
deps =
pytest
pytest-asyncio
commands =
2020-07-25 11:32:01 +00:00
pytest tests
[flake8]
max_line_length = 88