]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Skip ThreadedResolver tests on pypy.
authorBen Darnell <ben@bendarnell.com>
Sat, 16 Mar 2013 17:43:04 +0000 (13:43 -0400)
committerBen Darnell <ben@bendarnell.com>
Sat, 16 Mar 2013 17:43:04 +0000 (13:43 -0400)
There seem to be problems with thread/signal interactions.

.travis.yml

index ace54c803cd832580cd7708a59c8c98f1350f9c4..bbabb66b31b16262366e37ee3113dc657745207a 100644 (file)
@@ -28,7 +28,7 @@ script:
     - LANG=C python -m tornado.test.runtests
     - LANG=en_US.utf-8 python -m tornado.test.runtests
     - if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then python -bb -m tornado.test.runtests; fi
-    - if [[ $TRAVIS_PYTHON_VERSION == 3* || $DEPS == true ]]; then python -m tornado.test.runtests --resolver=tornado.netutil.ThreadedResolver; fi
+    - if [[ $TRAVIS_PYTHON_VERSION != pypy && $DEPS == true ]]; then python -m tornado.test.runtests --resolver=tornado.netutil.ThreadedResolver; fi
     - if [[ $TRAVIS_PYTHON_VERSION == 2* && $DEPS == true ]]; then python -m tornado.test.runtests --httpclient=tornado.curl_httpclient.CurlAsyncHTTPClient; fi
     - if [[ $TRAVIS_PYTHON_VERSION == 2* && $DEPS == true ]]; then python -m tornado.test.runtests --ioloop_time_monotonic; fi
     - if [[ $TRAVIS_PYTHON_VERSION == 2* && $DEPS == true ]]; then python -m tornado.test.runtests --ioloop=tornado.platform.twisted.TwistedIOLoop; fi