diff --git a/.travis.yml b/.travis.yml index d45b202..9648039 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,4 +10,5 @@ python: install: - pip install PyYAML pytest --use-mirrors - if [ $WITH_REQUESTS = "True" ] ; then pip install requests; fi + - pip freeze script: PYTHONPATH=`pwd` py.test --basetemp=. diff --git a/tests/integration/test_requests.py b/tests/integration/test_requests.py index eebdbcd..b761c27 100644 --- a/tests/integration/test_requests.py +++ b/tests/integration/test_requests.py @@ -6,10 +6,11 @@ import os import pytest -requests = pytest.importorskip("requests") import vcr +requests = pytest.importorskip("requests") + @pytest.fixture(params=["https","http"]) def scheme(request): """