sphinx-autoapi/tox.ini

54 lines
927 B
INI
Raw Normal View History

2015-08-03 18:24:39 +00:00
[tox]
envlist =
2019-06-23 20:23:23 +00:00
py{27,34,35,36,37}-sphinx{16,17,18},py{35,36,37}-sphinx{20,21}
2019-01-27 05:20:45 +00:00
formatting
2017-04-07 19:01:17 +00:00
lint
docs
2015-08-03 18:24:39 +00:00
2017-06-29 19:27:46 +00:00
[travis]
python =
2.7: py27
3.4: py34
3.5: py35
3.6: py36
3.7: py37
2017-06-29 19:27:46 +00:00
2015-08-03 18:24:39 +00:00
[testenv]
setenv =
LANG=C
deps = -r{toxinidir}/requirements.txt
pytest
mock
2017-08-28 21:01:14 +00:00
sphinx16: Sphinx<1.7
2018-02-17 06:05:36 +00:00
sphinx17: Sphinx<1.8
sphinx18: Sphinx<1.9
2019-04-06 17:04:15 +00:00
sphinx20: Sphinx<2.1
2019-06-23 20:23:23 +00:00
sphinx21: Sphinx<2.2
2015-08-03 18:24:39 +00:00
commands =
2015-08-03 21:01:54 +00:00
py.test {posargs}
2015-08-03 18:24:39 +00:00
2019-01-27 05:20:45 +00:00
[testenv:formatting]
basepython = python3
deps =
2019-03-30 18:47:11 +00:00
black
2015-08-03 18:24:39 +00:00
commands =
2019-01-27 05:20:45 +00:00
black --check autoapi tests
2015-08-03 18:24:39 +00:00
[testenv:lint]
deps =
2019-06-23 18:42:05 +00:00
pylint<2.3 # PyCQA/prospector#321
2015-08-03 18:24:39 +00:00
prospector
commands =
prospector \
--profile-path={toxinidir} \
--profile=prospector \
2017-06-29 19:27:46 +00:00
--die-on-tool-error {posargs}
2019-01-27 05:20:45 +00:00
[testenv:docs]
deps =
2019-06-23 20:23:23 +00:00
Sphinx>=2.1,<2.2
2019-01-27 05:20:45 +00:00
sphinx_rtd_theme
changedir = {toxinidir}/docs
commands =
2019-04-07 00:56:05 +00:00
sphinx-build -b html -d {envtmpdir}/doctrees . {envtmpdir}/html