mirror of
https://github.com/beetbox/beets.git
synced 2025-12-13 20:13:09 +01:00
44 lines
813 B
INI
44 lines
813 B
INI
# Tox (http://tox.testrun.org/) is a tool for running tests
|
|
# in multiple virtualenvs. This configuration file will run the
|
|
# test suite on all supported python versions. To use it, "pip install tox"
|
|
# and then run "tox" from this directory.
|
|
|
|
[tox]
|
|
envlist = py26, py27, pypy, docs, flake8
|
|
|
|
[testenv]
|
|
deps =
|
|
nose
|
|
mock
|
|
pylast
|
|
flask
|
|
responses
|
|
pyechonest
|
|
rarfile
|
|
commands =
|
|
nosetests {posargs}
|
|
|
|
[testenv:py26]
|
|
deps =
|
|
{[testenv]deps}
|
|
unittest2
|
|
|
|
[testenv:py27]
|
|
deps =
|
|
{[testenv]deps}
|
|
coverage
|
|
commands =
|
|
nosetests --with-coverage {posargs}
|
|
|
|
[testenv:docs]
|
|
changedir = docs
|
|
deps =
|
|
sphinx
|
|
commands =
|
|
sphinx-build -W -q -b html . {envtmpdir}/html
|
|
|
|
[testenv:flake8]
|
|
deps =
|
|
{[testenv]deps}
|
|
flake8
|
|
commands = flake8 beets beetsplug beet test setup.py docs
|