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

boto3 integration tests

This commit is contained in:
bogdan barna
2016-06-22 13:51:13 +03:00
committed by David de Sousa
parent 0800b99214
commit 24df79b75f
4 changed files with 77 additions and 2 deletions

View File

@@ -5,8 +5,12 @@ import boto # NOQA
import boto.iam # NOQA
from boto.s3.connection import S3Connection # NOQA
from boto.s3.key import Key # NOQA
from ConfigParser import DuplicateSectionError # NOQA
import vcr # NOQA
try: # NOQA
from ConfigParser import DuplicateSectionError # NOQA
except ImportError: # NOQA
# python3
from configparser import DuplicateSectionError # NOQA
def test_boto_stubs(tmpdir):