2011-07-17 23:52:56 +00:00
|
|
|
# Tox (http://codespeak.net/~hpk/tox/) is a tool for running tests
|
|
|
|
# in multiple virtualenvs. This configuration file will run the tornado
|
|
|
|
# test suite on all supported python versions. To use it, "pip install tox"
|
|
|
|
# and then run "tox" from this directory.
|
|
|
|
#
|
|
|
|
# See also tornado/test/run_pyversion_tests.py, which is faster but
|
|
|
|
# less thorough.
|
2011-08-03 06:26:50 +00:00
|
|
|
#
|
|
|
|
# On my macports-based setup, the environment variable
|
|
|
|
# ARCHFLAGS='-arch x86_64' must be set when building pycurl, and a
|
|
|
|
# symlink from mysql_config to mysql_config5 must exist when building
|
|
|
|
# MySQL-python.
|
2011-07-17 23:52:56 +00:00
|
|
|
[tox]
|
|
|
|
# "-full" variants include optional dependencies, to ensure
|
|
|
|
# that things work both in a bare install and with all the extras.
|
2012-03-24 23:05:11 +00:00
|
|
|
envlist = py27-full, py27-curl, py25-full, py32, pypy, py25, py26, py26-full, py27, py33
|
2011-07-17 23:52:56 +00:00
|
|
|
[testenv]
|
|
|
|
commands = python -m tornado.test.runtests {posargs:}
|
|
|
|
|
|
|
|
# python will import relative to the current working directory by default,
|
|
|
|
# so cd into the tox working directory to avoid picking up the working
|
|
|
|
# copy of the files (especially important for 2to3).
|
|
|
|
changedir = {toxworkdir}
|
|
|
|
# Note that PYTHONPATH must not be set when running tox (and setting it
|
|
|
|
# with the following doesn't seem to work, since tox/virtualenv appends to
|
|
|
|
# PYTHONPATH)
|
|
|
|
#environment = PYTHONPATH=
|
|
|
|
|
|
|
|
[testenv:py25]
|
2011-10-07 08:06:01 +00:00
|
|
|
basepython = python2.5
|
2011-07-17 23:52:56 +00:00
|
|
|
deps = simplejson
|
|
|
|
|
|
|
|
[testenv:py25-full]
|
|
|
|
basepython = python2.5
|
|
|
|
deps =
|
2011-08-03 06:26:50 +00:00
|
|
|
MySQL-python
|
2011-07-17 23:52:56 +00:00
|
|
|
pycurl
|
|
|
|
simplejson
|
2012-02-20 09:12:27 +00:00
|
|
|
twisted>=12.0.0
|
2011-07-17 23:52:56 +00:00
|
|
|
|
2012-01-17 07:23:21 +00:00
|
|
|
# py26-full deliberately runs an older version of twisted to ensure
|
|
|
|
# we're still compatible with the oldest version we support.
|
2011-07-17 23:52:56 +00:00
|
|
|
[testenv:py26-full]
|
|
|
|
basepython = python2.6
|
|
|
|
deps =
|
2011-08-03 06:26:50 +00:00
|
|
|
MySQL-python
|
2011-07-17 23:52:56 +00:00
|
|
|
pycurl
|
2011-12-01 06:59:09 +00:00
|
|
|
twisted==11.0.0
|
2011-07-17 23:52:56 +00:00
|
|
|
|
|
|
|
[testenv:py27-full]
|
|
|
|
basepython = python2.7
|
|
|
|
deps =
|
2011-08-03 06:26:50 +00:00
|
|
|
MySQL-python
|
2011-07-17 23:52:56 +00:00
|
|
|
pycurl
|
2012-02-20 09:12:27 +00:00
|
|
|
twisted>=12.0.0
|
2011-07-17 23:52:56 +00:00
|
|
|
|
2012-01-08 21:49:30 +00:00
|
|
|
[testenv:py27-curl]
|
|
|
|
# Same as py27-full, but runs the tests with curl_httpclient by default.
|
|
|
|
# Note that httpclient_test is always run with both client implementations;
|
|
|
|
# this flag controls which client all the other tests use.
|
|
|
|
basepython = python2.7
|
|
|
|
deps =
|
|
|
|
MySQL-python
|
|
|
|
pycurl
|
2012-02-20 09:12:27 +00:00
|
|
|
twisted>=11.1.0
|
2012-01-08 21:49:30 +00:00
|
|
|
commands = python -m tornado.test.runtests --httpclient=tornado.curl_httpclient.CurlAsyncHTTPClient {posargs:}
|
|
|
|
|
2011-08-14 16:53:55 +00:00
|
|
|
# No pypy-full yet: pycurl doesn't build with pypy, and installing
|
|
|
|
# twisted under pypy takes a *very* long time. MySQL-python builds with
|
|
|
|
# pypy, but doesn't work.
|
2011-08-03 06:26:50 +00:00
|
|
|
|
|
|
|
# No py32-full yet: none of our dependencies currently work on python3.
|
2012-03-24 23:05:11 +00:00
|
|
|
|
|
|
|
[testenv:py33]
|
|
|
|
# tox doesn't yet know "py33" by default
|
|
|
|
basepython = python3.3
|