Skip to content

Commit

Permalink
Don't fold install steps.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomprince committed May 12, 2016
1 parent b8d937c commit b917e97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ matrix:
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 b917e97

Please sign in to comment.