Skip to content

Commit

Permalink
Merge pull request #2227 from tomprince/upgrade-pip-for-wheel-caches
Browse files Browse the repository at this point in the history
Upgrade pip in travis.
  • Loading branch information
Mikhail Sobolev committed May 13, 2016
2 parents 0dceb0a + 5338e07 commit da6c147
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,20 +77,22 @@ matrix:
fast_finish: true
include:
# Tests of buildbot-worker and buildbot-slave on python 2.6
# Specify SQLALCHEMY=latest to avoid errors installing.
- python: "2.6"
env: TWISTED=14.0.2 TESTS=trial_worker
env: TWISTED=14.0.2 TESTS=trial_worker SQLALCHEMY=latest
- python: "2.6"
env: TWISTED=15.4.0 TESTS=trial_worker
env: TWISTED=15.4.0 TESTS=trial_worker SQLALCHEMY=latest
# python 3 tests
# - python: "3.4"
# env: TWISTED=latest SQLALCHEMY=latest TESTS=py3

# Dependencies installation commands
install:
- pip install -U pip
# codecov is the interface to codecov.io; see after_success
- "echo 'travis_fold:start:codecov'; pip install codecov; echo 'travis_fold:end:codecov'"
- "echo 'travis_fold:start:tw'; [ $TWISTED = latest ] || pip install Twisted==$TWISTED; echo 'travis_fold:end:tw'"
- "echo 'travis_fold:start:sa'; [ $SQLALCHEMY = latest ] || pip install sqlalchemy==$SQLALCHEMY; echo 'travis_fold:end:sa'"
- pip install codecov
- "[ $TWISTED = latest ] || pip install Twisted==$TWISTED"
- "[ $SQLALCHEMY = latest ] || pip install sqlalchemy==$SQLALCHEMY"

# mock is preinstalled on Travis
# Install lz4 for log compression utest
Expand Down

0 comments on commit da6c147

Please sign in to comment.