2019-11-24 21:17:41 +13:00
|
|
|
[tox]
|
2020-02-03 15:57:56 +13:00
|
|
|
envlist = py37, py38, black, flake8
|
2019-11-24 21:17:41 +13:00
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
|
sitepackages = true
|
|
|
|
|
deps = .[test]
|
|
|
|
|
commands =
|
|
|
|
|
python -m pytest \
|
|
|
|
|
--basetemp={envtmpdir} \
|
|
|
|
|
--cov=mopidy_iris --cov-report=term-missing \
|
|
|
|
|
{posargs}
|
|
|
|
|
|
|
|
|
|
[testenv:black]
|
|
|
|
|
deps = .[lint]
|
|
|
|
|
commands = python -m black --check .
|
|
|
|
|
|
|
|
|
|
[testenv:flake8]
|
|
|
|
|
deps = .[lint]
|
|
|
|
|
commands = python -m flake8 --show-source --statistics
|