]> Sergey Matveev's repositories - zsh-autoenv.git/blobdiff - .travis.yml
tests: mv ZDOTDIR.{clobber,options}
[zsh-autoenv.git] / .travis.yml
index b56caf2a75d6a825cae3356ecfcb72e56725f30b..33d14924d9f718e87a5db7f9aeb1111e825dc290 100644 (file)
@@ -1,7 +1,21 @@
-language: python
-python:
-  - "3.3"
-before_script:
-  - "sudo apt-get install zsh"
-install: "sudo pip install cram"
-script: "make tests"
+language: generic
+sudo: false
+env:
+  - ZSH=4
+  - ZSH=4 ZDOTDIR=tests/ZDOTDIR.options
+  - ZSH=4 ZDOTDIR=tests/ZDOTDIR.invalid-module_path
+  - ZSH=4 ZDOTDIR=tests/ZDOTDIR.loadviafunction
+
+  - ZSH=5
+  - ZSH=5 ZDOTDIR=tests/ZDOTDIR.options
+  - ZSH=5 ZDOTDIR=tests/ZDOTDIR.invalid-module_path
+  - ZSH=5 ZDOTDIR=tests/ZDOTDIR.loadviafunction
+
+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; cd ..; fi
+  - pip install --user cram
+  - export SHELL=zsh
+script:
+  - zsh --version
+  - make test ZDOTDIR=$ZDOTDIR