17 lines
198 B
INI
17 lines
198 B
INI
[tox]
|
|
envlist = py38, black, pytest
|
|
|
|
[testenv]
|
|
deps = .
|
|
|
|
[testenv:black]
|
|
deps = black
|
|
commands =
|
|
black -S --check --diff kibicara tests
|
|
|
|
[testenv:pytest]
|
|
deps = pytest
|
|
commands =
|
|
pytest
|
|
|