summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIonel Cristian Mărieș <contact@ionelmc.ro>2017-04-08 17:00:15 +0300
committerIonel Cristian Mărieș <contact@ionelmc.ro>2017-04-08 17:00:15 +0300
commitbcbce26be5c696afb8b2d1aa94205a138db29ab3 (patch)
treedcd9f11ea2a4596f72fec88f462249d0badd8bba
parent0d4c8b9f7eec9dd165a20e4f252cdb3ff5585c97 (diff)
Extract in homedir. Unset verbose flag at the end.
-rw-r--r--.travis.yml11
1 files changed, 7 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 97993ab..bb101f2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -38,21 +38,24 @@ before_install:
- |
set -ex
if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then
- wget https://bitbucket.org/squeaky/portable-pypy/downloads/pypy-5.7-linux_x86_64-portable.tar.bz2
- tar -jxvf pypy-5.7-linux_x86_64-portable.tar.bz2
+ (cd $HOME
+ wget https://bitbucket.org/squeaky/portable-pypy/downloads/pypy-5.7-linux_x86_64-portable.tar.bz2
+ tar -jxvf pypy-5.7-linux_x86_64-portable.tar.bz2)
echo 'Setting up aliases...'
export PATH=$HOME/pypy-5.7-linux_x86_64-portable/bin/:$PATH
echo 'Setting up pip...'
pypy-5.7-linux_x86_64-portable/bin/pypy -m ensurepip
fi
if [[ $TRAVIS_PYTHON_VERSION == 'pypy3' ]]; then
- wget https://bitbucket.org/squeaky/portable-pypy/downloads/pypy3.5-5.7-beta-linux_x86_64-portable.tar.bz2
- tar -jxvf pypy3.5-5.7-beta-linux_x86_64-portable.tar.bz2
+ (cd $HOME
+ wget https://bitbucket.org/squeaky/portable-pypy/downloads/pypy3.5-5.7-beta-linux_x86_64-portable.tar.bz2
+ tar -jxvf pypy3.5-5.7-beta-linux_x86_64-portable.tar.bz2)
echo 'Setting up aliases...'
export PATH=$HOME/pypy3.5-5.7-beta-linux_x86_64-portable/bin/:$PATH
echo 'Setting up pip...'
pypy3.5-5.7-beta-linux_x86_64-portable/bin/pypy -m ensurepip
fi
+ set +x
install:
- pip install tox
- virtualenv --version