Skip to content

Commit

Permalink
travis: use -e on command line with sudo, add 3.2 and 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasWaldmann committed Aug 7, 2015
1 parent 08a33a1 commit 144cc1b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,18 @@ cache:

matrix:
include:
- python: 3.2
os: linux
env: TOXENV=py32
- python: 3.3
os: linux
env: TOXENV=py33
- python: 3.4
os: linux
env: TOXENV=py34
- python: nightly
os: linux
env: TOXENV=py35
- language: generic
os: osx
osx_image: beta-xcode6.3
Expand Down
1 change: 0 additions & 1 deletion .travis/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
esac
pyenv rehash
python -m pip install --user virtualenv
#brew outdated fakeroot || brew upgrade fakeroot
# ??? brew outdated libacl1-dev || brew upgrade libacl1-dev
else
pip install virtualenv
Expand Down
2 changes: 1 addition & 1 deletion .travis/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fi
source ~/.venv/bin/activate
if [[ "$(uname -s)" == "Darwin" ]]; then
# no fakeroot on OS X
sudo tox
sudo tox -e $TOXENV
else
fakeroot -u tox
fi

0 comments on commit 144cc1b

Please sign in to comment.