Skip to content

Commit

Permalink
Travis: remove extra pip call
Browse files Browse the repository at this point in the history
  • Loading branch information
malept committed Oct 22, 2015
1 parent 5829c48 commit b29b897
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@ cache:
- node_modules
- gmusicprocurator/static/vendor
- wheelhouse

install:
- npm install
- gem install scss-lint
- bower install --force-latest
# See: https://github.com/travis-ci/travis-ci/issues/4756
- if [[ "$TRAVIS_PYTHON_VERSION" = "pypy" ]]; then pip wheel --find-links wheelhouse 'cryptography<1.0'; fi
- pip wheel --find-links wheelhouse -r requirements/dev.txt libsass
- pip install --find-links wheelhouse -r requirements/dev.txt libsass
- if [[ "$TRAVIS_PYTHON_VERSION" = "pypy" ]]; then export EXTRA_PACKAGES='cryptography<1.0'; fi
- pip wheel --find-links wheelhouse -r requirements/dev.txt $EXTRA_PACKAGES libsass
- pip install --find-links wheelhouse -r requirements/dev.txt $EXTRA_PACKAGES libsass
script: ./run_tests.sh

0 comments on commit b29b897

Please sign in to comment.