Codebase list pastedeploy / 6531a589-d293-4f88-a20e-e10ead18c66a/main tox.ini
6531a589-d293-4f88-a20e-e10ead18c66a/main

Tree @6531a589-d293-4f88-a20e-e10ead18c66a/main (Download .tar.gz)

tox.ini @6531a589-d293-4f88-a20e-e10ead18c66a/mainraw · history · blame

[tox]
envlist = py27, py34, py35, py36, py37, pypy, pypy3,
    docs

[testenv]
deps =
    # Paste works on Python 3 since Paste 2.0
    Paste
    pytest
    pytest-cov
commands =
    py.test --cov=paste/deploy --cov-report=xml --cov-report=html --cov-report=term-missing {posargs}

[testenv:docs]
# pin to 3.5 to match what RTD uses
basepython = python3.5
whitelist_externals = make
commands =
    make -C docs html epub BUILDDIR={envdir} "SPHINXOPTS=-W -E"
extras =
    docs