From a8e1f533ced32a7da477ca5031b40c6968d40bc3 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Thu, 5 Oct 2017 00:23:54 +0200 Subject: [PATCH] .travis.yml: use make test --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0e6f405b7..de67a6671 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,7 +34,6 @@ install: elif [ "${LINT#vint}" != "$LINT" ]; then virtualenv /tmp/vint && source /tmp/vint/bin/activate && pip install vim-vint elif [ "${LINT#vader}" != "$LINT" ]; then - git clone --depth 1 https://github.com/junegunn/vader.vim.git /tmp/vader C_OPTS="--prefix=$DEPS --with-features=huge --disable-gui --enable-pythoninterp" git clone --depth 1 https://github.com/vim/vim cd vim @@ -61,5 +60,5 @@ script: elif [ "$LINT" = "vint-errors" ]; then vint --error . elif [ "$LINT" = "vader" ]; then - vim -Nu test/vimrc -c 'Vader! test/**' + make test fi