bidict/tox.ini

26 lines
553 B
INI
Raw Normal View History

2014-09-23 14:08:21 +00:00
[tox]
envlist =
py{39,38,37,36,py3}
lint
docs
skip_missing_interpreters = true
2014-09-23 14:08:21 +00:00
[testenv]
deps = -r requirements/tests.txt
commands = ./run_tests.py
# Only enable coverage for py39 by default
[testenv:py39]
setenv =
PYTEST_ADDOPTS = --cov=bidict --cov-config=.coveragerc --cov-report=xml
[testenv:lint]
deps = -r requirements/lint.txt
skip_install = true
commands = pre-commit run --all-files --show-diff-on-failure
[testenv:docs]
deps = -r requirements/docs.txt
commands = sphinx-build -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html