mirror of
https://github.com/Tarrasch/zsh-autoenv.git
synced 2024-11-04 17:01:00 +02:00
22 lines
703 B
YAML
22 lines
703 B
YAML
language: python
|
|
python:
|
|
- 3.4
|
|
env:
|
|
- ZSH=4 ZDOTDIR=tests/ZDOTDIR
|
|
- ZSH=4 ZDOTDIR=tests/ZDOTDIR.clobber
|
|
- ZSH=4 ZDOTDIR=tests/ZDOTDIR.invalid-module_path
|
|
- ZSH=4 ZDOTDIR=tests/ZDOTDIR.loadviafunction
|
|
|
|
- ZSH=5 ZDOTDIR=tests/ZDOTDIR
|
|
- ZSH=5 ZDOTDIR=tests/ZDOTDIR.clobber
|
|
- 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 && make && sudo make install; fi
|
|
- pip install cram
|
|
script:
|
|
- zsh --version
|
|
- make test
|