]> Sergey Matveev's repositories - zsh-autoenv.git/blobdiff - .travis.yml
Optimize _autoenv_authorized_env_file
[zsh-autoenv.git] / .travis.yml
index f9fb698a90a0cf50915c50d7cbee73375fb4657d..c609fdc29e69987469bf1101fe2549d6e3455c3a 100644 (file)
@@ -1,14 +1,13 @@
-language: python
-python:
-  - 3.4
+language: generic
+sudo: false
 env:
-  ZDOTDIR=tests/ZDOTDIR
-  ZDOTDIR=tests/ZDOTDIR.clobber
-  ZDOTDIR=tests/ZDOTDIR.invalid-module_path
-  ZDOTDIR=tests/ZDOTDIR.loadviafunction
+  - ZSH=4
+  - ZSH=5
+
 install:
-  - sudo apt-get install zsh
-  - pip install cram
+  - 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
 script:
   - zsh --version
-  - make test
+  - make test_full