tox.ini 392 B

123456789101112131415161718
  1. [tox]
  2. envlist = py27, flake8
  3. [testenv]
  4. sitepackages = true
  5. deps =
  6. coverage
  7. mock
  8. nose
  9. mopidy==dev
  10. install_command = pip install --allow-unverified=mopidy --pre {opts} {packages}
  11. commands = nosetests -v --with-xunit --xunit-file=xunit-{envname}.xml --with-coverage --cover-package=mopidy_touchscreen
  12. [testenv:flake8]
  13. deps =
  14. flake8
  15. flake8-import-order
  16. commands = flake8