mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 21:14:19 +01:00
- verbose nose mode (easier to tell what's erroneously being skipped, fore example) - less redundant installs - travis_retry coveralls install - separate py27cov tox environment; default tox runs will not use coverage, which can take a long time; use tox -e py27cov to get coverage numbers
48 lines
912 B
INI
48 lines
912 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 =
|
|
beautifulsoup4
|
|
flask
|
|
mock
|
|
nose
|
|
pyechonest
|
|
pylast
|
|
rarfile
|
|
responses
|
|
commands =
|
|
nosetests -v {posargs}
|
|
|
|
[testenv:py26]
|
|
deps =
|
|
{[testenv]deps}
|
|
unittest2
|
|
commands =
|
|
python ./setup.py test {posargs}
|
|
|
|
[testenv:py27cov]
|
|
basepython = python2.7
|
|
deps =
|
|
{[testenv]deps}
|
|
coverage
|
|
commands =
|
|
nosetests -v --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
|