Skip to content

Commit

Permalink
Use travis_retry for installing dependencies on Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
singingwolfboy committed Feb 11, 2015
1 parent 6b461ce commit 66b8d3b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ env:
before_script:
- if [[ $DATABASE_URI == postgresql* ]]; then psql -c 'create database travis_ci_test;' -U postgres; fi
install:
- pip install -r requirements.txt
- pip install -r dev-requirements.txt
- if [[ $DATABASE_URI == postgresql* ]]; then pip install psycopg2; fi
- pip install coveralls
- travis_retry pip install -r requirements.txt
- travis_retry pip install -r dev-requirements.txt
- if [[ $DATABASE_URI == postgresql* ]]; then travis_retry pip install psycopg2; fi
- travis_retry pip install coveralls
script:
- coverage run --source=flask_dance runtests.py
after_success:
Expand Down

0 comments on commit 66b8d3b

Please sign in to comment.