32 lines
563 B
INI
32 lines
563 B
INI
[tox]
|
|
envlist = py{35,36},report,check
|
|
skip_missing_interpreters = True
|
|
|
|
[testenv]
|
|
commands = pytest --cov sigal --cov-report term-missing
|
|
deps =
|
|
pytest
|
|
pytest-cov
|
|
|
|
[testenv:report]
|
|
basepython = python3.6
|
|
commands =
|
|
coverage combine
|
|
coverage report
|
|
usedevelop = true
|
|
deps = coverage
|
|
|
|
[testenv:check]
|
|
basepython = python3.6
|
|
deps =
|
|
docutils
|
|
check-manifest
|
|
flake8
|
|
collective.checkdocs
|
|
pygments
|
|
usedevelop = true
|
|
commands =
|
|
python setup.py checkdocs
|
|
python setup.py check --strict --metadata
|
|
check-manifest {toxinidir}
|