From ce14de8251531f6a001447c7f8857cc12b795287 Mon Sep 17 00:00:00 2001 From: Luiz Menezes Date: Wed, 10 Aug 2016 15:56:19 -0300 Subject: [PATCH] fix tests --- .travis.yml | 1 - tests/integration/test_aiohttp.py | 11 +++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1ff6043..30545e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,7 +27,6 @@ matrix: allow_failures: - env: TOX_SUFFIX="boto" - env: TOX_SUFFIX="boto3" - - env: TOX_SUFFIX="aiohttp" exclude: - env: TOX_SUFFIX="boto" python: 3.3 diff --git a/tests/integration/test_aiohttp.py b/tests/integration/test_aiohttp.py index ab1112c..1ae2fe1 100644 --- a/tests/integration/test_aiohttp.py +++ b/tests/integration/test_aiohttp.py @@ -1,8 +1,11 @@ -import asyncio - -import aiohttp import pytest -import vcr +asyncio = pytest.importorskip("boto3") + +import asyncio # NOQA + +import aiohttp # NOQA +import pytest # NOQA +import vcr # NOQA @asyncio.coroutine