mirror of
https://github.com/beetbox/beets.git
synced 2025-12-07 17:16:07 +01:00
Now just typing `tox` or `detox` runs some sensible defaults. (This excludes Python 3 and coverage.) You can request other environments explicitly with `-e`.
51 lines
1.2 KiB
INI
51 lines
1.2 KiB
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 = py27-test, py27-flake8, docs
|
|
|
|
# The exhaustive list of environments is:
|
|
# envlist = py{27,33,34,35}-{test,cov}, py{27,33}-flake8, docs
|
|
|
|
[_test]
|
|
deps =
|
|
beautifulsoup4
|
|
flask
|
|
mock
|
|
nose
|
|
nose-show-skipped
|
|
pyechonest
|
|
pylast
|
|
rarfile
|
|
responses>=0.3.0
|
|
pathlib
|
|
pyxdg
|
|
jellyfish
|
|
python-mpd2
|
|
coverage
|
|
|
|
[_flake8]
|
|
deps =
|
|
flake8
|
|
flake8-future-import
|
|
pep8-naming
|
|
files = beets beetsplug beet test setup.py docs
|
|
|
|
[testenv]
|
|
passenv =
|
|
NOSE_SHOW_SKIPPED # Undocumented feature of nose-show-skipped.
|
|
deps =
|
|
{test,cov}: {[_test]deps}
|
|
py{27,33}-flake8: {[_flake8]deps}
|
|
commands =
|
|
cov: nosetests --with-coverage {posargs}
|
|
test: nosetests {posargs}
|
|
py27-flake8: flake8 --min-version 2.7 {posargs} {[_flake8]files}
|
|
py33-flake8: flake8 --min-version 3.3 {posargs} {[_flake8]files}
|
|
|
|
[testenv:docs]
|
|
basepython = python2.7
|
|
deps = sphinx
|
|
commands = sphinx-build -W -q -b html docs {envtmpdir}/html {posargs}
|