From e9d206a521f37cd0b0a174b99a6dac423ef3ff39 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Sat, 3 Aug 2019 17:40:45 +0200 Subject: [PATCH] ci: run vint on Vim source Fixes https://github.com/vim-jp/vim-vimlparser/issues/111. --- .travis.yml | 4 ++-- Makefile | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index dfc537a2..152fa644 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,14 +23,14 @@ jobs: - name: Installed Vim with checks env: - VIM_VERSION=installed - - MAKE_TARGET="clean_compiled check checkpy js/test py/test test/node_position/test_position.out" + - MAKE_TARGET="clean_compiled check checkpy checkvim js/test py/test test/node_position/test_position.out" - TEST_PROFILE=vim-profile-installed.txt - TEST_PYTHON=python3 install: - | if [ "$VIM_VERSION" = 'installed' ]; then - pip install --user flake8 + pip install -q --user flake8 git+https://github.com/Kuniwak/vint else bash scripts/install-vim.sh export PATH=$HOME/vim/bin:$PATH diff --git a/Makefile b/Makefile index a671a58d..4a7e0972 100644 --- a/Makefile +++ b/Makefile @@ -19,6 +19,9 @@ check: all checkpy: all flake8 py +checkvim: all + vint autoload + test: test/run.sh