Skip to content

Commit

Permalink
update travis to run both with and without requests library
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin1024 committed Sep 16, 2012
1 parent 6d876c6 commit aeac276
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .travis.yml
@@ -1,7 +1,12 @@
language: python
env:
- WITH_REQUESTS: True
- WITH_REQUESTS: False
python:
- 2.6
- 2.7
- pypy
install: pip install -r test_requirements.txt --use-mirrors
install:
- pip install -r test_requirements.txt --use-mirrors
- if [ $WITH_REQUESTS = "True" ] ; then pip install requests; fi
script: python test.py

0 comments on commit aeac276

Please sign in to comment.