mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-09 09:13:23 +00:00
Fix/ignore some flake errors
This commit is contained in:
@@ -1,12 +1,12 @@
|
|||||||
import pytest
|
import pytest
|
||||||
boto = pytest.importorskip("boto")
|
boto = pytest.importorskip("boto")
|
||||||
|
|
||||||
import boto
|
import boto # NOQA
|
||||||
import boto.iam
|
import boto.iam # NOQA
|
||||||
from boto.s3.connection import S3Connection
|
from boto.s3.connection import S3Connection # NOQA
|
||||||
from boto.s3.key import Key
|
from boto.s3.key import Key # NOQA
|
||||||
from ConfigParser import DuplicateSectionError
|
from ConfigParser import DuplicateSectionError # NOQA
|
||||||
import vcr
|
import vcr # NOQA
|
||||||
|
|
||||||
|
|
||||||
def test_boto_stubs(tmpdir):
|
def test_boto_stubs(tmpdir):
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
'''Test requests' interaction with vcr'''
|
'''Test requests' interaction with vcr'''
|
||||||
from io import BytesIO
|
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
import vcr
|
import vcr
|
||||||
from assertions import assert_cassette_empty, assert_is_json
|
from assertions import assert_cassette_empty, assert_is_json
|
||||||
@@ -97,7 +95,7 @@ def test_post(tmpdir, scheme):
|
|||||||
|
|
||||||
|
|
||||||
def test_post_chunked_binary(tmpdir, scheme):
|
def test_post_chunked_binary(tmpdir, scheme):
|
||||||
'''Ensure that we can send chunked binary without breaking while trying to concatenate bytes with string.'''
|
'''Ensure that we can send chunked binary without breaking while trying to concatenate bytes with str.'''
|
||||||
data1 = iter([b'data', b'to', b'send'])
|
data1 = iter([b'data', b'to', b'send'])
|
||||||
data2 = iter([b'data', b'to', b'send'])
|
data2 = iter([b'data', b'to', b'send'])
|
||||||
url = scheme + '://httpbin.org/post'
|
url = scheme + '://httpbin.org/post'
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ from six.moves import xmlrpc_client
|
|||||||
|
|
||||||
requests = pytest.importorskip("requests")
|
requests = pytest.importorskip("requests")
|
||||||
|
|
||||||
import vcr
|
import vcr # NOQA
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import httplib
|
import httplib
|
||||||
|
|||||||
@@ -233,7 +233,8 @@ def test_cassette_use_called_without_path_uses_function_to_generate_path():
|
|||||||
|
|
||||||
|
|
||||||
def test_path_transformer_with_function_path():
|
def test_path_transformer_with_function_path():
|
||||||
path_transformer = lambda path: os.path.join('a', path)
|
def path_transformer(path):
|
||||||
|
return os.path.join('a', path)
|
||||||
|
|
||||||
@Cassette.use(inject=True, path_transformer=path_transformer)
|
@Cassette.use(inject=True, path_transformer=path_transformer)
|
||||||
def function_name(cassette):
|
def function_name(cassette):
|
||||||
|
|||||||
Reference in New Issue
Block a user