]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Also exclude pycares from pypy on travis.
authorBen Darnell <ben@bendarnell.com>
Wed, 14 May 2014 00:35:59 +0000 (20:35 -0400)
committerBen Darnell <ben@bendarnell.com>
Wed, 14 May 2014 00:35:59 +0000 (20:35 -0400)
.travis.yml

index 9c8baa940a32efd18d62ca9a2e81b57b719f5ccf..7e8ff692209bc1d7045a1a6d1a9002432f550a10 100644 (file)
@@ -15,11 +15,10 @@ env:
 install:
     # always install unittest2 on py26 even if $DEPS is unset
     - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi
-    - if [[ $DEPS == true ]]; then pip install pycares; fi
     - if [[ $TRAVIS_PYTHON_VERSION == 2* && $DEPS == true ]]; then pip install futures mock Monotime==1.0; fi
     - if [[ $TRAVIS_PYTHON_VERSION == '2.7' && $DEPS == true ]]; then pip install sphinx==1.2; fi
     - if [[ $TRAVIS_PYTHON_VERSION == 'pypy' && $DEPS == true ]]; then pip install futures mock; fi
-    - if [[ $TRAVIS_PYTHON_VERSION != 'pypy' && $DEPS == true ]]; then pip install pycurl; fi
+    - if [[ $TRAVIS_PYTHON_VERSION != 'pypy' && $DEPS == true ]]; then pip install pycares pycurl; fi
     - if [[ $TRAVIS_PYTHON_VERSION == '3.2' && $DEPS == true ]]; then pip install mock; fi
     # Twisted runs on 2.x and 3.3+
     - if [[ $TRAVIS_PYTHON_VERSION != '3.2' && $DEPS == true ]]; then pip install Twisted; fi