From: Ben Darnell Date: Sun, 14 Aug 2011 16:53:55 +0000 (-0700) Subject: Remove tox config for pypy with mysql. X-Git-Tag: v2.1.0~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=225bf2ac1def0bde3bc9bf8374cfc401176225bf;p=thirdparty%2Ftornado.git Remove tox config for pypy with mysql. The module builds on pypy, but doesn't work (and having it loaded causes non-deterministic failures in the process-related tests) --- diff --git a/tox.ini b/tox.ini index cdcce3452..3bc21ba34 100644 --- a/tox.ini +++ b/tox.ini @@ -13,7 +13,7 @@ [tox] # "-full" variants include optional dependencies, to ensure # that things work both in a bare install and with all the extras. -envlist = py25, py25-full, py26, py26-full, py27, py27-full, pypy, pypy-full, py32 +envlist = py25, py25-full, py26, py26-full, py27, py27-full, pypy, py32 [testenv] commands = python -m tornado.test.runtests {posargs:} @@ -51,11 +51,8 @@ deps = pycurl twisted -[testenv:pypy-full] -# pycurl doesn't build with pypy, and installing twisted under pypy takes -# a *very* long time -basepython = pypy -deps = - MySQL-python +# 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. # No py32-full yet: none of our dependencies currently work on python3.