1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
[tox]
envlist=py26,py27,py34,sphinx06,sphinx10,sphinx11,sphinx12,sphinx13,sphinx14,sphinx15,sphinx16,sphinx17,sphinx18,sphinx-dev
[testenv]
deps=
nose
mock
flake8
passenv=
TRAVIS*
commands=
nosetests
flake8 setup.py src/ tests/
[testenv:py26]
deps=
{[testenv]deps}
unittest2
Sphinx <= 1.4.9999
commands=
nosetests
[testenv:sphinx06]
deps=
{[testenv]deps}
Sphinx <= 0.6.9999
[testenv:sphinx10]
deps=
{[testenv]deps}
Sphinx <= 1.0.9999
[testenv:sphinx11]
deps=
{[testenv]deps}
Sphinx <= 1.1.9999
[testenv:sphinx12]
deps=
{[testenv]deps}
Sphinx <= 1.2.9999
[testenv:sphinx13]
deps=
{[testenv]deps}
Sphinx <= 1.3.9999
[testenv:sphinx14]
deps=
{[testenv]deps}
Sphinx <= 1.4.9999
[testenv:sphinx15]
deps=
{[testenv]deps}
Sphinx <= 1.5.9999
[testenv:sphinx16]
deps=
{[testenv]deps}
Sphinx <= 1.6.9999
[testenv:sphinx17]
deps=
{[testenv]deps}
Sphinx <= 1.7.9999
[testenv:sphinx18]
deps=
{[testenv]deps}
Sphinx <= 1.8.9999
[testenv:sphinx-dev]
deps=
{[testenv]deps}
git+https://github.com/sphinx-doc/sphinx
|