-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,9 +54,41 @@ if ! $MAKE_CMD oldtest; then | |
fi | ||
asan_check "$tmpdir" | ||
|
||
coveralls --encoding iso-8859-1 || echo 'coveralls upload failed.' | ||
|
||
# Test if correctly installed. | ||
sudo -E $MAKE_CMD install | ||
/usr/local/bin/nvim --version | ||
/usr/local/bin/nvim -e -c "quit" | ||
|
||
# Run Vader tests. | ||
mkdir -p ~/.nvim/autoload | ||
curl -fLo ~/.nvim/autoload/plug.vim \ | ||
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | ||
cat > ~/.nvimrc <<EOS | ||
let g:plug_threads=1 | ||
call plug#begin('~/.vim/plugged') | ||
Plug 'junegunn/vader.vim' | ||
Plug 'junegunn/vim-emoji' | ||
Plug 'junegunn/seoul256.vim' | ||
Plug 'junegunn/vim-easy-align' | ||
Plug 'junegunn/vim-after-object' | ||
Plug 'junegunn/vim-plug' | ||
Plug 'junegunn/vim-oblique' | ||
Plug 'junegunn/vim-pseudocl' | ||
Plug 'junegunn/limelight.vim' | ||
Plug 'junegunn/fzf' | ||
Plug 'justinmk/vim-sneak' | ||
Plug 'mrtazz/simplenote.vim' | ||
Plug 'edkolev/erlang-motions.vim' | ||
Plug 'bruno-/vim-alt-mappings' | ||
call plug#end() | ||
EOS | ||
# Use Vim to *install* the plugins. | ||
# https://github.com/junegunn/vim-plug/issues/104 | ||
ln -s ~/.nvimrc ~/.vimrc | ||
ln -s ~/.nvim ~/.vim | ||
vim -c "PlugInstall" -c "qall" | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
aktau
|
||
for dir in ~/.nvim/plugged/*; do | ||
/usr/local/bin/nvim -c "Vader! ${dir}/test*/*.vader" -c "qall" \ | ||
|| echo "Vader tests failed for ${dir}." | ||
done | ||
|
||
coveralls --encoding iso-8859-1 || echo 'coveralls upload failed.' |
Can't this be done with nvim?