python-click/tox.ini

22 lines
447 B
INI
Raw Normal View History

2018-09-06 20:55:10 +02:00
[tox]
2019-01-07 17:51:19 +01:00
envlist =
2020-07-21 08:23:42 +02:00
py{38,37,36,35,27,py3,py}
style
docs
2019-01-07 17:51:19 +01:00
skip_missing_interpreters = true
2018-09-06 20:55:10 +02:00
[testenv]
deps =
pytest
colorama
2020-07-21 08:23:42 +02:00
commands = pytest --tb=short --basetemp={envtmpdir} {posargs}
2018-09-06 20:55:10 +02:00
2020-07-21 08:23:42 +02:00
[testenv:style]
deps = pre-commit
2018-09-06 20:55:10 +02:00
skip_install = true
2020-07-21 08:23:42 +02:00
commands = pre-commit run --all-files --show-diff-on-failure
2018-09-06 20:55:10 +02:00
2020-07-21 08:23:42 +02:00
[testenv:docs]
deps = -r docs/requirements.txt
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html