From 14590ae3c7248b14e8f0dc934378b9454ead10b0 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Sun, 9 Feb 2014 09:47:09 -1000 Subject: [PATCH] Add httplib2 tests to travis --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 3c48f80..c1786cb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,11 +4,15 @@ env: - WITH_REQUESTS="2.x" - WITH_REQUESTS="1.x" - WITH_REQUESTS="False" + - WITH_HTTPLIB2="True" + - WITH_HTTPLIB2="False" python: - 2.6 - 2.7 + - pypy install: - pip install PyYAML pytest --use-mirrors - if [ $WITH_REQUESTS = "1.x" ] ; then pip install requests==1.2.3; fi - if [ $WITH_REQUESTS = "2.x" ] ; then pip install requests; fi + - if [ $WITH_HTTPLIB2 = "True" ] ; then pip install httplib2; fi script: python setup.py test