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

fix tests

This commit is contained in:
Luiz Menezes
2016-08-10 15:56:19 -03:00
parent 574b22a62a
commit ce14de8251
2 changed files with 7 additions and 5 deletions

View File

@@ -27,7 +27,6 @@ matrix:
allow_failures: allow_failures:
- env: TOX_SUFFIX="boto" - env: TOX_SUFFIX="boto"
- env: TOX_SUFFIX="boto3" - env: TOX_SUFFIX="boto3"
- env: TOX_SUFFIX="aiohttp"
exclude: exclude:
- env: TOX_SUFFIX="boto" - env: TOX_SUFFIX="boto"
python: 3.3 python: 3.3

View File

@@ -1,8 +1,11 @@
import asyncio
import aiohttp
import pytest import pytest
import vcr asyncio = pytest.importorskip("boto3")
import asyncio # NOQA
import aiohttp # NOQA
import pytest # NOQA
import vcr # NOQA
@asyncio.coroutine @asyncio.coroutine