tornado/maint/vm/windows/tox.ini

44 lines
842 B
INI

[tox]
envlist = py27-full, py32-full, py26, py26-full, py27, py32, py33, py27-opt, py33-monotonic
setupdir = e:\
toxworkdir = c:\tox-tornado
[testenv]
commands = python -m tornado.test.runtests {posargs:}
[testenv:py26]
deps = unittest2
[testenv:py26-full]
basepython = python2.6
deps =
futures
mock
unittest2
[testenv:py27-full]
basepython = python2.7
deps =
futures
mock
[testenv:py32-full]
basepython = python3.2
deps =
mock
[testenv:py33]
# tox's path mappings haven't been updated for py33 yet.
basepython = c:\python33\python.exe
[testenv:py33-monotonic]
basepython = c:\python33\python.exe
commands = python -m tornado.test.runtests --ioloop_time_monotonic {posargs:}
[testenv:py27-opt]
basepython = python2.7
deps =
futures
mock
commands = python -O -m tornado.test.runtests {posargs:}