Codebase list python-werkzeug / upstream/0.15.6+dfsg1 tox.ini
upstream/0.15.6+dfsg1

Tree @upstream/0.15.6+dfsg1 (Download .tar.gz)

tox.ini @upstream/0.15.6+dfsg1raw · history · blame

[tox]
envlist =
    py{37,36,35,27,py3,py}
    style
    docs-html
    coverage
skip_missing_interpreters = true

[testenv]
deps =
    coverage
    pytest
    pytest-timeout
    pytest-xprocess
    requests
    requests_unixsocket
    pyopenssl
    greenlet
    watchdog
commands = coverage run -p -m pytest --tb=short --basetemp={envtmpdir} {posargs}

[testenv:style]
deps = pre-commit
skip_install = true
commands = pre-commit run --all-files --show-diff-on-failure

[testenv:docs-html]
deps =
    Sphinx
    Pallets-Sphinx-Themes
    sphinx-issues
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html

[testenv:coverage]
deps = coverage
skip_install = true
commands =
    coverage combine
    coverage html
    coverage report

[testenv:coverage-ci]
deps = coverage
skip_install = true
commands =
    coverage combine
    coverage xml
    coverage report