1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00

fix tests in stubs, requests ssl verification and httpbin+flask

This commit is contained in:
bogdan barna
2016-06-24 11:43:01 +03:00
parent 5a848d277e
commit 5c9b0b4ccb
3 changed files with 6 additions and 2 deletions

View File

@@ -76,7 +76,7 @@ def test_amazon_doctype(tmpdir):
# amazon gzips its homepage. For some reason, in requests 2.7, it's not
# getting gunzipped.
with vcr.use_cassette(str(tmpdir.join('amz.yml'))):
r = requests.get('http://www.amazon.com')
r = requests.get('http://www.amazon.com', verify=False)
assert 'html' in r.text