From 34e7760d475c4abe8deab7d9704ce60afc43a5b0 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Sat, 8 Mar 2014 20:21:20 -1000 Subject: [PATCH] let's add boto as a supported client, and maybe we dont need the empty travis env anymore --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1736c1f..01e181c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ env: - WITH_LIB="requests2.x" - WITH_LIB="requests1.x" - WITH_LIB="httplib2" - - WITH_LIB="None" + - WITH_LIB="boto" python: - 2.6 - 2.7 @@ -15,4 +15,5 @@ install: - if [ $WITH_LIB = "requests1.x" ] ; then pip install requests==1.2.3; fi - if [ $WITH_LIB = "requests2.x" ] ; then pip install requests; fi - if [ $WITH_LIB = "httplib2" ] ; then pip install httplib2; fi + - if [ $WITH_LIB = "boto" ] ; then pip install boto; fi script: python setup.py test