2020-07-02 09:24:43 +00:00
|
|
|
[tox]
|
2020-07-17 17:59:25 +00:00
|
|
|
envlist = py38, flake8, black, pytest
|
2020-07-02 09:24:43 +00:00
|
|
|
|
|
|
|
[testenv]
|
|
|
|
deps = .
|
|
|
|
|
2020-07-17 17:59:25 +00:00
|
|
|
[testenv:flake8]
|
|
|
|
deps = flake8
|
|
|
|
commands =
|
2020-07-18 20:26:36 +00:00
|
|
|
flake8 kibicara tests
|
2020-07-17 17:59:25 +00:00
|
|
|
|
2020-07-02 12:30:25 +00:00
|
|
|
[testenv:black]
|
|
|
|
deps = black
|
2020-07-17 17:59:25 +00:00
|
|
|
commands =
|
2020-07-18 20:26:36 +00:00
|
|
|
black -S --check --diff kibicara tests
|
2020-07-02 09:24:43 +00:00
|
|
|
|
|
|
|
[testenv:pytest]
|
2020-07-18 20:26:36 +00:00
|
|
|
deps =
|
|
|
|
pytest
|
|
|
|
pytest-asyncio
|
2020-07-02 09:24:43 +00:00
|
|
|
commands =
|
2020-07-18 20:26:36 +00:00
|
|
|
pytest
|
2020-07-02 09:24:43 +00:00
|
|
|
|
2020-07-17 17:59:25 +00:00
|
|
|
[flake8]
|
|
|
|
max_line_length = 88
|