1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-10 01:25:34 +00:00

httplib2 support

This commit is contained in:
Roberto Abdelkader Martínez Pérez
2014-02-04 13:22:36 +01:00
committed by Kevin McCarthy
parent 6bb67567f9
commit 46a2c25f6a
5 changed files with 269 additions and 3 deletions

24
tox.ini
View File

@@ -4,7 +4,8 @@
# and then run "tox" from this directory.
[tox]
envlist = py26, py27, pypy, py26requests, py27requests, pypyrequests, py26oldrequests, py27oldrequests, pypyoldrequests
#envlist = py26, py27, pypy, py26requests, py27requests, pypyrequests, py26oldrequests, py27oldrequests, pypyoldrequests
envlist = py26, py27, pypy, py26httplib2, py27httplib2, pypyhttplib2
[testenv]
commands =
@@ -61,3 +62,24 @@ deps =
pytest
PyYAML
requests
[testenv:py26httplib2]
basepython = python2.6
deps =
pytest
PyYAML
httplib2
[testenv:py27httplib2]
basepython = python2.7
deps =
pytest
PyYAML
httplib2
[testenv:pypyhttplib2]
basepython = pypy
deps =
pytest
PyYAML
httplib2