pelican/tox.ini

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

31 lines
598 B
INI
Raw Normal View History

2011-07-02 15:54:24 -05:00
[tox]
envlist = py{3.11,3.12,3.13,3.14},docs
2011-07-02 15:54:24 -05:00
[testenv]
basepython =
py3.11: python3.11
2023-10-03 16:59:57 +02:00
py3.12: python3.12
2024-12-21 15:45:35 +02:00
py3.13: python3.13
2025-10-17 09:53:59 +02:00
py3.14: python3.14
2015-05-13 21:08:39 +02:00
passenv = *
usedevelop=True
deps =
-rrequirements/test.pip
commands =
{envpython} --version
pytest -s --cov=pelican --cov-fail-under 75 pelican
[testenv:docs]
2023-11-28 21:38:26 +01:00
basepython = python3.11
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