2023-01-08 01:08:18 -05:00
|
|
|
[tox]
|
2026-09-22 21:39:33 -04:00
|
|
|
envlist = py310, py311, py312, py313, check-manifest, flake8
|
2023-01-08 01:08:18 -05:00
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
|
sitepackages = true
|
|
|
|
|
deps = .[test]
|
|
|
|
|
commands =
|
|
|
|
|
python -m pytest \
|
|
|
|
|
--basetemp={envtmpdir} \
|
2026-09-22 21:39:33 -04:00
|
|
|
--cov=mopidy_webhooks --cov-report=term-missing \
|
2023-01-08 01:08:18 -05:00
|
|
|
{posargs}
|
|
|
|
|
|
|
|
|
|
[testenv:check-manifest]
|
|
|
|
|
deps = .[lint]
|
|
|
|
|
commands = python -m check_manifest
|
|
|
|
|
|
|
|
|
|
[testenv:flake8]
|
|
|
|
|
deps = .[lint]
|
|
|
|
|
commands = python -m flake8 --show-source --statistics
|