mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-23 22:51:35 +00:00
Merge pull request #2005 from ThomasWaldmann/fix-travis-osx-builds
travis: fix OS X based testing
This commit is contained in:
commit
6cb6984433
1 changed files with 5 additions and 1 deletions
|
@ -17,7 +17,7 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
|
|||
brew install lz4
|
||||
brew outdated pyenv || brew upgrade pyenv
|
||||
brew install pkg-config
|
||||
brew install Caskroom/versions/osxfuse
|
||||
brew install Caskroom/cask/osxfuse
|
||||
|
||||
case "${TOXENV}" in
|
||||
py34)
|
||||
|
@ -28,6 +28,10 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
|
|||
pyenv install 3.5.1
|
||||
pyenv global 3.5.1
|
||||
;;
|
||||
py36)
|
||||
pyenv install 3.6.0
|
||||
pyenv global 3.6.0
|
||||
;;
|
||||
esac
|
||||
pyenv rehash
|
||||
python -m pip install --user 'virtualenv<14.0'
|
||||
|
|
Loading…
Reference in a new issue