pelican/tox.ini
2015-07-29 20:08:28 -07:00

29 lines
519 B
INI

[tox]
envlist = py{27,33,34},docs
[testenv]
basepython =
py27: python2.7
py33: python3.3
py34: python3.4
passenv = *
usedevelop=True
deps =
-rdev_requirements.txt
nose
nose-cov
codecov
commands =
{envpython} --version
nosetests -sv --with-coverage --cover-branches --cover-package=pelican pelican
codecov
[testenv:docs]
basepython = python2.7
deps =
sphinx
sphinx_rtd_theme
changedir = docs
commands =
sphinx-build -W -b html -d {envtmpdir}/doctrees . _build/html