travis: fix tests

- set SHELL=zsh
 - cd back for ZSH=5
 - fix/improve autoenv.plugin.zsh: no dirname, use ${0:h}
This commit is contained in:
Daniel Hahler 2015-04-23 21:52:25 +02:00
parent 473a0a32df
commit bf1376fd8f
2 changed files with 3 additions and 2 deletions

View File

@ -14,8 +14,9 @@ env:
install:
- if [ "$ZSH" = 4 ]; then sudo apt-get install zsh; fi
- if [ "$ZSH" = 5 ]; then wget http://downloads.sourceforge.net/project/zsh/zsh/5.0.7/zsh-5.0.7.tar.bz2; tar xf zsh-5.0.7.tar.bz2; cd zsh-5.0.7; ./configure && sudo make && sudo make install; fi
- if [ "$ZSH" = 5 ]; then wget http://downloads.sourceforge.net/project/zsh/zsh/5.0.7/zsh-5.0.7.tar.bz2; tar xf zsh-5.0.7.tar.bz2; cd zsh-5.0.7; ./configure && sudo make && sudo make install; cd ..; fi
- pip install cram
- export SHELL=zsh
script:
- zsh --version
- make test

View File

@ -1 +1 @@
. $(dirname $0)/autoenv.zsh
. ${0:h}/autoenv.zsh