51 lines
938 B
INI
51 lines
938 B
INI
[tox]
|
|
envlist = coverage-clean,py26,py27,py33,py34,py35,pypy,flake8,manifest,docs,coverage-report
|
|
|
|
|
|
[testenv]
|
|
passenv = TERM # ensure colors
|
|
deps =
|
|
coverage
|
|
pytest
|
|
zope.interface
|
|
commands = coverage run --parallel -m pytest {posargs}
|
|
|
|
|
|
[testenv:flake8]
|
|
basepython = python3.5
|
|
deps = flake8
|
|
commands = flake8 src tests setup.py
|
|
|
|
|
|
[testenv:docs]
|
|
basepython = python2.7
|
|
setenv =
|
|
PYTHONHASHSEED = 0
|
|
deps =
|
|
sphinx
|
|
zope.interface
|
|
commands =
|
|
sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
|
|
sphinx-build -W -b doctest -d {envtmpdir}/doctrees docs docs/_build/html
|
|
python -m doctest README.rst
|
|
|
|
|
|
[testenv:manifest]
|
|
deps = check-manifest
|
|
skip_install = true
|
|
commands = check-manifest
|
|
|
|
|
|
[testenv:coverage-clean]
|
|
deps = coverage
|
|
skip_install = true
|
|
commands = coverage erase
|
|
|
|
|
|
[testenv:coverage-report]
|
|
deps = coverage
|
|
skip_install = true
|
|
commands =
|
|
coverage combine
|
|
coverage report
|