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

Add httplib2 tests to travis

This commit is contained in:
Kevin McCarthy
2014-02-09 09:47:09 -10:00
parent d16b20a780
commit 14590ae3c7

View File

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