aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-09-26 10:17:09 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-09-26 10:17:09 -0500
commit0520a2512d461b100ce1988ad094f76a219528b5 (patch)
treeca8d2487c581ad8d684b788abb3e11e517a27631
parent2b6682c23c6bc7f5e81004764cb1973b6b31dd92 (diff)
parent8f6096cc755fc8a968675144791169a50588ac5b (diff)
downloadcryptography-0520a2512d461b100ce1988ad094f76a219528b5.tar.gz
cryptography-0520a2512d461b100ce1988ad094f76a219528b5.tar.bz2
cryptography-0520a2512d461b100ce1988ad094f76a219528b5.zip
Merge pull request #1354 from alex/cleanup-travis-install
Remove (apparently) unneeded line
-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