22 lines
337 B
INI
22 lines
337 B
INI
[tox]
|
|
envlist = py37, flake8
|
|
|
|
[testenv]
|
|
deps =
|
|
mock
|
|
pytest
|
|
pytest-cov
|
|
pytest-xdist
|
|
commands =
|
|
py.test \
|
|
--basetemp={envtmpdir} \
|
|
--cov=mopidy_radionet --cov-report=term-missing \
|
|
{posargs}
|
|
|
|
[testenv:flake8]
|
|
deps =
|
|
flake8
|
|
flake8-import-order
|
|
skip_install = true
|
|
commands = flake8 tests
|