]> jfr.im git - z_archive/twitter.git/blobdiff - .travis.yml
bandaid unicode/str.encode-related crash bug
[z_archive/twitter.git] / .travis.yml
index b8c0995c3d03e70de2f30fcb6505569ef2dcc6b3..55bb83bbdfab6988bcfe363c6e69ab27f0525498 100644 (file)
@@ -6,10 +6,16 @@ python:
 - "3.2"
 - "3.3"
 - "3.4"
+- "3.5"
 - "pypy"
 
+# Use container-based infrastructure
+sudo: false
+
 install:
-  - pip install coveralls
+ # Coveralls 4.0 doesn't support Python 3.2
+  - if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then pip install coverage==3.7.1; fi
+  - if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then pip install coverage; fi
 
 script: nosetests --with-coverage --cover-package=twitter