1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 17:15:35 +00:00

let's add boto as a supported client, and maybe we dont need the empty travis env anymore

This commit is contained in:
Kevin McCarthy
2014-03-08 20:21:20 -10:00
parent 32b99f0719
commit 34e7760d47

View File

@@ -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