27 lines
456 B
INI
27 lines
456 B
INI
|
[tox]
|
||
|
envlist = py27, flake8, check-manifest
|
||
|
|
||
|
[testenv]
|
||
|
sitepackages = true
|
||
|
deps =
|
||
|
mock
|
||
|
pytest
|
||
|
pytest-cov
|
||
|
pytest-xdist
|
||
|
commands =
|
||
|
pytest \
|
||
|
--basetemp={envtmpdir} \
|
||
|
--cov=mopidy_raspberry_gpio --cov-report=term-missing \
|
||
|
{posargs}
|
||
|
|
||
|
[testenv:flake8]
|
||
|
deps =
|
||
|
flake8
|
||
|
flake8-import-order
|
||
|
skip_install = true
|
||
|
commands = python -m flake8
|
||
|
|
||
|
[testenv:check-manifest]
|
||
|
deps = check-manifest
|
||
|
commands = check-manifest
|