Make Python 2.6 an allowed failure on Travis CI
authorAaron Hill <aa1ronham@gmail.com>
Fri, 20 Dec 2013 01:39:35 +0000 (20:39 -0500)
committerAaron Hill <aa1ronham@gmail.com>
Fri, 20 Dec 2013 01:39:35 +0000 (20:39 -0500)
Until httreplay supports Python 2.6, or I find another library that
does, pull request testing won't work with Python 2.6.

.travis.yml

index b3f35d306a125e8fdc86036bf2d2f3034090f851..1d5db16b0d05763b224400112bf2abd07b903a67 100644 (file)
@@ -6,6 +6,9 @@ python:
 install:
   - pip install -r test_requirements.txt
 script: ./run_tests.sh
+matrix:
+  allow_failures:
+    - python: "2.6"
 env:
   global:
     - TWITTER_USERNAME="tweepytest"