Files
deb-python-eventlet/tox.ini
Floris Bruynooghe 47fbd99171 Fix python 2.5 support
* Avoid using property.setter(), use old-style properties instead.

* Avoid using the new pep8-style threading API.

* Use from __future__ import with_statement where it is used.

* Add python 2.5 environments to tox, no epolls since that did not yet
  exist.
2012-09-05 00:53:40 +01:00

43 lines
883 B
INI

[tox]
envlist = py25,py26,py27
[testenv]
deps = nose
commands =
nosetests tests/
nosetests --with-doctest eventlet/coros.py eventlet/event.py \
eventlet/pool.py eventlet/pools.py eventlet/proc.py \
eventlet/queue.py eventlet/timeout.py
[testenv:py25selects]
basepython = python2.5
setenv = EVENTLET_HUB = selects
[testenv:py25poll]
basepython = python2.5
setenv = EVENTLET_HUB = poll
[testenv:py26selects]
basepython = python2.6
setenv = EVENTLET_HUB = selects
[testenv:py26poll]
basepython = python2.6
setenv = EVENTLET_HUB = poll
[testenv:py26epolls]
basepython = python2.6
setenv = EVENTLET_HUB = epolls
[testenv:py27selects]
basepython = python2.7
setenv = EVENTLET_HUB = selects
[testenv:py27poll]
basepython = python2.7
setenv = EVENTLET_HUB = poll
[testenv:py27epolls]
basepython = python2.7
setenv = EVENTLET_HUB = epolls