Files
sigal/tox.ini

35 lines
661 B
INI
Raw Normal View History

2013-09-29 00:39:50 +02:00
[tox]
2016-01-08 00:11:40 +01:00
envlist = py{27,33,34,35}-pillow{30,31},report,check
2015-12-15 11:23:56 +01:00
skip_missing_interpreters = True
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 =
2016-01-08 00:11:40 +01:00
pillow30: Pillow==3.0.0
pillow31: Pillow>3.0.0
2013-09-29 00:39:50 +02:00
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]
2015-10-14 22:47:11 +02:00
basepython = python3.5
2015-04-22 23:25:48 +02:00
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]
2015-10-14 22:47:11 +02:00
basepython = python3.5
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}