aboutsummaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-09-26 10:05:48 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2014-09-26 10:05:48 -0400
commit8f6096cc755fc8a968675144791169a50588ac5b (patch)
treeca8d2487c581ad8d684b788abb3e11e517a27631 /.travis
parent2b6682c23c6bc7f5e81004764cb1973b6b31dd92 (diff)
downloadcryptography-8f6096cc755fc8a968675144791169a50588ac5b.tar.gz
cryptography-8f6096cc755fc8a968675144791169a50588ac5b.tar.bz2
cryptography-8f6096cc755fc8a968675144791169a50588ac5b.zip
Remove (apparently) unneeded line
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/install.sh9
1 files changed, 4 insertions, 5 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index 0105fc4f..0c64ba93 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -33,7 +33,10 @@ if [[ "${TOX_ENV}" == "docs" ]]; then
fi
if [[ "$DARWIN" = true ]]; then
- if which pyenv > /dev/null; then eval "$(pyenv init -)"; fi
+ if which pyenv > /dev/null; then
+ eval "$(pyenv init -)"
+ fi
+
case "${TOX_ENV}" in
py26)
curl -O https://bootstrap.pypa.io/get-pip.py
@@ -107,7 +110,3 @@ fi
virtualenv ~/.venv
source ~/.venv/bin/activate
pip install tox coveralls
-
-if [[ "$DARWIN" = true ]]; then
- pyenv rehash
-fi