Files
sigal/tox.ini

32 lines
558 B
INI
Raw Normal View History

2013-09-29 00:39:50 +02:00
[tox]
2015-04-22 23:25:48 +02:00
envlist = py27,py33,py34,report,check
2013-09-29 00:39:50 +02:00
[testenv]
2015-04-22 23:25:48 +02:00
commands = py.test --cov sigal --cov-report term-missing
2013-09-29 00:39:50 +02:00
deps =
pytest
2015-04-22 23:25:48 +02:00
pytest-capturelog
pytest-cov
2013-09-29 00:39:50 +02:00
2015-04-22 23:25:48 +02:00
[testenv:report]
basepython = python3.4
commands =
coverage combine
coverage report
usedevelop = true
deps = coverage
2014-04-08 00:13:51 +02:00
2015-04-22 23:25:48 +02:00
[testenv:check]
basepython = python3.4
2014-04-08 00:13:51 +02:00
deps =
2015-04-22 23:25:48 +02:00
docutils
check-manifest
flake8
collective.checkdocs
pygments
usedevelop = true
commands =
python setup.py checkdocs
python setup.py check --strict --metadata
check-manifest {toxinidir}