1
0
Fork 0
forked from github/pelican
pelican-theme/tox.ini
2019-11-11 13:51:25 -08:00

47 lines
825 B
INI

[tox]
envlist = py{27,35,36,37},docs,flake8
[testenv]
basepython =
py27: python2.7
py35: python3.5
py36: python3.6
py37: python3.7
passenv = *
usedevelop=True
deps =
-rrequirements/test.pip
pytest
pytest-cov
coveralls
pygments==2.1.3
commands =
{envpython} --version
pytest -sv --cov=pelican pelican
- coveralls
[testenv:docs]
basepython = python3.6
deps =
-rrequirements/docs.pip
changedir = docs
commands =
sphinx-build -W -b html -d {envtmpdir}/doctrees . _build/html
[pytest]
filterwarnings =
default::DeprecationWarning
error:.*:Warning:pelican
[flake8]
application-import-names = pelican
import-order-style = cryptography
[testenv:flake8]
basepython = python3.6
deps =
-rrequirements/style.pip
commands =
flake8 --version
flake8 pelican