sphinx/tox.ini
Takayuki Shimizukawa 6746c83a18 * Drop Python-3.2. And now, removing 2to3 mechanism procedure has been completed. Closes #1350.
Pygments-2.0 will drop Python-3.2.
The snowballstemmer package that is referred from sphinx-1.3 (that is merged at pull request #214) has not supported Python-3.2.

We decided to drop the Python-3.2.

see also https://bitbucket.org/birkenfeld/sphinx/pull-request/243/native-py2-py3-support-without-2to3-refs
2014-05-27 23:17:36 +09:00

42 lines
577 B
INI

[tox]
envlist=py26,py27,py33,py34,pypy,du11,du10
[testenv]
deps=
nose
sqlalchemy
whoosh
setenv =
BUILD_TEST_PATH = {envdir}/tests
commands=
{envpython} tests/run.py {posargs}
sphinx-build -W -b html -d {envtmpdir}/doctrees doc {envtmpdir}/html
[testenv:py26]
deps=
mock
{[testenv]deps}
[testenv:py27]
deps=
mock
{[testenv]deps}
[testenv:pypy]
deps=
mock
simplejson
{[testenv]deps}
[testenv:du10]
deps=
mock
docutils==0.10
{[testenv]deps}
[testenv:du11]
deps=
mock
docutils==0.11
{[testenv]deps}