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

let's keep testing python3.3, at least for the time being.

This commit is contained in:
Kevin McCarthy
2014-04-23 19:36:31 -10:00
parent bc5199c893
commit e002aab999
2 changed files with 28 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ to do is delete your existing cassette files, and run your tests again.
All of the mocked responses will be updated with the new API. All of the mocked responses will be updated with the new API.
## Compatibility Notes ## Compatibility Notes
VCR.py supports Python 2.6 and 2.7, 3.4, and [pypy](http://pypy.org). VCR.py supports Python 2.6 and 2.7, 3.3, 3.4, and [pypy](http://pypy.org).
The following http libraries are supported: The following http libraries are supported:

27
tox.ini
View File

@@ -7,6 +7,7 @@
envlist = envlist =
py26 py26
py27 py27
py33
py34 py34
pypy pypy
py26requests py26requests
@@ -15,10 +16,12 @@ envlist =
pypyrequests pypyrequests
py26oldrequests py26oldrequests
py27oldrequests py27oldrequests
py33oldrequests
py34oldrequests py34oldrequests
pypyoldrequests pypyoldrequests
py26httplib2 py26httplib2
py27httplib2 py27httplib2
py33httplib2
py34httplib2 py34httplib2
pypyhttplib2 pypyhttplib2
@@ -46,6 +49,14 @@ deps =
PyYAML PyYAML
requests==1.2.3 requests==1.2.3
[testenv:py33oldrequests]
basepython = python3.3
deps =
mock
pytest
PyYAML
requests==1.2.3
[testenv:py34oldrequests] [testenv:py34oldrequests]
basepython = python3.4 basepython = python3.4
deps = deps =
@@ -78,6 +89,14 @@ deps =
PyYAML PyYAML
requests requests
[testenv:py33requests]
basepython = python3.4
deps =
mock
pytest
PyYAML
requests
[testenv:py34requests] [testenv:py34requests]
basepython = python3.4 basepython = python3.4
deps = deps =
@@ -110,6 +129,14 @@ deps =
PyYAML PyYAML
httplib2 httplib2
[testenv:py33httplib2]
basepython = python3.4
deps =
mock
pytest
PyYAML
httplib2
[testenv:py34httplib2] [testenv:py34httplib2]
basepython = python3.4 basepython = python3.4
deps = deps =