vim-sussify/.travis.yml
Marco Hinz 01066037ba Tests: use the latest Vim
Testing on travis-ci would fail due to a bug in Vim 7.3. Tests now compile the
latest Vim from source before testing.
2014-11-25 15:23:13 +01:00

17 lines
365 B
YAML

language: vim
before_script: |
hg clone https://vim.googlecode.com/hg vim
make -C ./vim
git clone https://github.com/junegunn/vader.vim.git
script: |
VIMRUNTIME=vim/runtime vim/src/vim -XNu <(cat << EOF
filetype off
set runtimepath+=vader.vim
set runtimepath+=.
filetype plugin on
syntax enable
set hidden
EOF) -c 'Vader! test/*' >/dev/null