]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Update twisted test blacklist for the newly-released 13.1.0.
authorBen Darnell <ben@bendarnell.com>
Mon, 1 Jul 2013 00:25:16 +0000 (20:25 -0400)
committerBen Darnell <ben@bendarnell.com>
Mon, 1 Jul 2013 00:25:16 +0000 (20:25 -0400)
tornado/test/twisted_test.py
tox.ini

index b8d9c6f781e015f5fe0eeb5a93940547ad3be287..003b539d4beade2b80d22b73615fd9ad4ef4f7e0 100644 (file)
@@ -478,6 +478,10 @@ if have_twisted:
             "test_lostFileDescriptor",  # incompatible with epoll and kqueue
         ],
         'twisted.internet.test.test_process.ProcessTestsBuilder': [
+            # Only work as root.  Twisted's "skip" functionality works
+            # with py27+, but not unittest2 on py26.
+            'test_changeGID',
+            'test_changeUID',
         ],
         # Process tests appear to work on OSX 10.7, but not 10.6
         #'twisted.internet.test.test_process.PTYProcessTestsBuilder': [
diff --git a/tox.ini b/tox.ini
index 3d143c3ae41f1ae39edfddc63d371c3d20ba74a4..54b2f7accd063830f9a3f2ee1fbcc6df1a6f15fc 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -28,15 +28,13 @@ changedir = {toxworkdir}
 basepython = python2.6
 deps = unittest2
 
-# py26-full deliberately runs an older version of twisted to ensure
-# we're still compatible with the oldest version we support.
 [testenv:py26-full]
 basepython = python2.6
 deps =
      futures
      mock
      pycurl
-     twisted==11.0.0
+     twisted>=11.0.0
      unittest2
 
 [testenv:py27-full]
@@ -45,7 +43,7 @@ deps =
      futures
      mock
      pycurl
-     twisted>=12.2.0
+     twisted>=11.0.0
 
 [testenv:py27-curl]
 # Same as py27-full, but runs the tests with curl_httpclient by default.
@@ -56,7 +54,7 @@ deps =
      futures
      mock
      pycurl
-     twisted>=11.1.0
+     twisted>=11.0.0
 commands = python -m tornado.test.runtests --httpclient=tornado.curl_httpclient.CurlAsyncHTTPClient {posargs:}
 
 [testenv:py27-select]
@@ -68,7 +66,7 @@ deps =
      futures
      mock
      pycurl
-     twisted>=12.0.0
+     twisted>=11.0.0
 commands = python -m tornado.test.runtests --ioloop=tornado.platform.select.SelectIOLoop {posargs:}
 
 [testenv:py26-twisted]