From f353a95af5d30011b0703422e67242e16b7924a3 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Sat, 10 Aug 2013 17:48:06 -1000 Subject: [PATCH] whats up with travis --- .travis.yml | 1 + tests/integration/test_requests.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) 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): """