Skip to content

Commit 6dac3f4

Browse files
committed
run vint on travis ci
1 parent 299c97e commit 6dac3f4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
- VIM_VERSION=installed
2626
- MAKE_TARGET="clean_compiled check checkpy js/test py/test test/node_position/test_position.out"
2727
- TEST_PROFILE=vim-profile-installed.txt
28+
- RUN_VINT=true
2829

2930
install:
3031
- |
@@ -35,12 +36,15 @@ install:
3536
export PATH=$HOME/vim/bin:$PATH
3637
fi
3738
- pip install covimerage --user
39+
- if [ "$RUN_VINT" = "true" ]; then pip install --user --upgrade vim-vint pathlib enum34 typing; fi
3840

3941
script:
4042
- uname -a
4143
- which -a vim
4244
- vim --cmd version --cmd quit
4345
- make --keep-going $MAKE_TARGET
46+
- if [ "$RUN_VINT" = "true" ]; then python --version; fi
47+
- if [ "$RUN_VINT" = "true" ]; then vint autoload; fi
4448

4549
after_success:
4650
- covimerage write_coverage $TEST_PROFILE

0 commit comments

Comments
 (0)