yet another simple static gallery generator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

34 lines
661 B

[tox]
envlist = py{27,33,34,35}-pillow{30,31},report,check
skip_missing_interpreters = True
[testenv]
commands = py.test --cov sigal --cov-report term-missing
deps =
pillow30: Pillow==3.0.0
pillow31: Pillow>3.0.0
pytest
pytest-capturelog
pytest-cov
[testenv:report]
basepython = python3.5
commands =
coverage combine
coverage report
usedevelop = true
deps = coverage
[testenv:check]
basepython = python3.5
deps =
docutils
check-manifest
flake8
collective.checkdocs
pygments
usedevelop = true
commands =
python setup.py checkdocs
python setup.py check --strict --metadata
check-manifest {toxinidir}