Skip ThreadedResolver tests on pypy.

There seem to be problems with thread/signal interactions.
This commit is contained in:
Ben Darnell 2013-03-16 13:43:04 -04:00
parent 693ebbe1f0
commit 17c0e496f0
1 changed files with 1 additions and 1 deletions

View 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