sphinx-autoapi/tox.ini

51 lines
821 B
INI
Raw Normal View History

2015-08-03 18:24:39 +00:00
[tox]
envlist =
2019-01-27 00:26:39 +00:00
py{27,34,35,36,37}-sphinx{16,17,18}
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
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-01-27 05:20:45 +00:00
black==18.9b0
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 =
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 =
Sphinx>=1.8,<=1.9
sphinx_rtd_theme
changedir = {toxinidir}/docs
commands =
sphinx-build -b html -d {envtmpdir}/doctrees . {envtmpdir}/html