2020-07-02 09:24:43 +00:00
|
|
|
[tox]
|
2020-07-08 11:24:00 +00:00
|
|
|
envlist = py38, black, pytest
|
2020-07-02 09:24:43 +00:00
|
|
|
|
|
|
|
[testenv]
|
|
|
|
deps = .
|
|
|
|
|
2020-07-02 12:30:25 +00:00
|
|
|
[testenv:black]
|
|
|
|
deps = black
|
2020-07-02 09:24:43 +00:00
|
|
|
commands =
|
2020-07-02 12:30:25 +00:00
|
|
|
black -S --check --diff kibicara tests
|
2020-07-02 09:24:43 +00:00
|
|
|
|
|
|
|
[testenv:pytest]
|
|
|
|
deps = pytest
|
|
|
|
commands =
|
|
|
|
pytest
|
|
|
|
|