1
0
Fork 0
forked from github/pelican
pelican-theme/tox.ini

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
599 B
INI
Raw Permalink Normal View History

2011-07-02 15:54:24 -05:00
[tox]
envlist = py{3.8,3.9,3.10,3.11.3.12},docs
2011-07-02 15:54:24 -05:00
[testenv]
basepython =
py3.8: python3.8
2020-10-12 18:38:46 +03:00
py3.9: python3.9
py3.10: python3.10
py3.11: python3.11
2023-10-03 16:59:57 +02:00
py3.12: python3.12
2015-05-13 21:08:39 +02:00
passenv = *
usedevelop=True
deps =
-rrequirements/test.pip
commands =
{envpython} --version
pytest -s --cov=pelican pelican
[testenv:docs]
basepython = python3.9
deps =
-rrequirements/docs.pip
changedir = docs
commands =
2015-06-19 19:20:48 +02:00
sphinx-build -W -b html -d {envtmpdir}/doctrees . _build/html
2015-06-08 12:50:35 +02:00
[pytest]
filterwarnings =
default::DeprecationWarning
error:.*:Warning:pelican
addopts = -n auto -r a