From 2e3a129669e6bf3c4ae864e66c9056ccc08486d9 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Wed, 19 Sep 2012 19:52:46 -1000 Subject: [PATCH] fix bug in travis.yml --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index c8e6c25..af48ce4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,12 @@ language: python env: - - WITH_REQUESTS: True - - WITH_REQUESTS: False + - WITH_REQUESTS="True" + - WITH_REQUESTS="False" python: - 2.6 - 2.7 - pypy install: - - pip install -r test_requirements.txt --use-mirrors + - pip install -r requirements.txt --use-mirrors - if [ $WITH_REQUESTS = "True" ] ; then pip install requests; fi script: python test.py