]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Remove tox config for pypy with mysql.
authorBen Darnell <ben@bendarnell.com>
Sun, 14 Aug 2011 16:53:55 +0000 (09:53 -0700)
committerBen Darnell <ben@bendarnell.com>
Sun, 14 Aug 2011 16:53:55 +0000 (09:53 -0700)
The module builds on pypy, but doesn't work (and having it loaded causes
non-deterministic failures in the process-related tests)

tox.ini

diff --git a/tox.ini b/tox.ini
index cdcce34525157ee032e4772369338e848473d6e3..3bc21ba347c7f1abc1756bd23bb15587ea456c74 100644 (file)
--- 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.