Files
Iris/tox.ini

28 lines
527 B
INI
Raw Permalink Normal View History

2019-11-24 21:17:41 +13:00
[tox]
2020-02-06 16:35:07 +13:00
envlist = py37, py38, black, check-manifest, flake8
2019-11-24 21:17:41 +13:00
2021-10-24 12:15:15 +13:00
[gh-actions]
python =
3.7: py37
3.8: py38
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 .
2020-02-03 16:13:49 +13:00
[testenv:check-manifest]
deps = .[lint]
commands = python -m check_manifest
2019-11-24 21:17:41 +13:00
[testenv:flake8]
deps = .[lint]
commands = python -m flake8 --show-source --statistics