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

fix bug in travis.yml

This commit is contained in:
Kevin McCarthy
2012-09-19 19:52:46 -10:00
parent aeac2766ad
commit 2e3a129669

View File

@@ -1,12 +1,12 @@
language: python language: python
env: env:
- WITH_REQUESTS: True - WITH_REQUESTS="True"
- WITH_REQUESTS: False - WITH_REQUESTS="False"
python: python:
- 2.6 - 2.6
- 2.7 - 2.7
- pypy - pypy
install: 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 - if [ $WITH_REQUESTS = "True" ] ; then pip install requests; fi
script: python test.py script: python test.py