Skip to content

Commit

Permalink
Speed up travis builds with wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Oct 20, 2015
1 parent 8aa97f7 commit ea18aad
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@ language: python
python:
- "2.7"
#- "3.5"
# command to install dependencies
cache:
directories:
- $HOME/.wheelhouse/
install:
- python setup.py install
- pip install -r requirements.txt
- pip wheel -w $HOME/.wheelhouse -f $HOME/.wheelhouse -r requirements.txt
- pip install --find-links=$HOME/.wheelhouse --no-index -rrequirements.txt
- python setup.py install
- pip install -r requirements.txt

# command to run tests
script: bash run_tests.sh
Expand Down

0 comments on commit ea18aad

Please sign in to comment.