Skip to content

Commit

Permalink
travis: try 3.5.0b4, 3.2, 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasWaldmann committed Aug 7, 2015
1 parent a02cb15 commit 57df001
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
10 changes: 9 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,21 @@ matrix:
- python: 3.4
os: linux
env: TOXENV=py34
- python: 3.5.0b3
- python: 3.5.0b4
os: linux
env: TOXENV=py35
- language: generic
os: osx
osx_image: beta-xcode6.3
env: TOXENV=py32
- language: generic
os: osx
osx_image: beta-xcode6.3
env: TOXENV=py33
- language: generic
os: osx
osx_image: beta-xcode6.3
env: TOXENV=py34

install:
- ./.travis/install.sh
Expand Down
9 changes: 7 additions & 2 deletions .travis/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,20 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
fi

case "${TOXENV}" in
py32)
brew outdated pyenv || brew upgrade pyenv
pyenv install 3.2.6
pyenv global 3.2.6
;;
py33)
brew outdated pyenv || brew upgrade pyenv
pyenv install 3.3.6
pyenv global 3.3.6
;;
py34)
brew outdated pyenv || brew upgrade pyenv
pyenv install 3.4.2
pyenv global 3.4.2
pyenv install 3.4.3
pyenv global 3.4.3
;;
esac
pyenv rehash
Expand Down

0 comments on commit 57df001

Please sign in to comment.