24 lines
394 B
INI
24 lines
394 B
INI
[tox]
|
|
envlist = py27, flake8
|
|
|
|
[testenv]
|
|
deps =
|
|
mock
|
|
mopidy
|
|
pytest
|
|
pytest-cov
|
|
pytest-xdist
|
|
commands =
|
|
py.test \
|
|
--basetemp={envtmpdir} \
|
|
--junit-xml=xunit-{envname}.xml \
|
|
--cov=mopidy_musicbox_webclient --cov-report=term-missing \
|
|
{posargs}
|
|
|
|
[testenv:flake8]
|
|
deps =
|
|
flake8
|
|
flake8-import-order
|
|
skip_install = true
|
|
commands = flake8
|