1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +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.
## 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:

27
tox.ini
View File

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