We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a15b92c commit e3cc2f8Copy full SHA for e3cc2f8
1 file changed
.travis.yml
@@ -25,6 +25,7 @@ jobs:
25
- VIM_VERSION=installed
26
- MAKE_TARGET="clean_compiled check checkpy js/test py/test test/node_position/test_position.out"
27
- TEST_PROFILE=vim-profile-installed.txt
28
+ - RUN_VINT=true
29
30
install:
31
- |
@@ -35,12 +36,15 @@ install:
35
36
export PATH=$HOME/vim/bin:$PATH
37
fi
38
- pip install covimerage --user
39
+ - if [ "$RUN_VINT" = "true" ]; then pip install --user --upgrade vim-vint pathlib enum34 typing; fi
40
41
script:
42
- uname -a
43
- which -a vim
44
- vim --cmd version --cmd quit
45
- make --keep-going $MAKE_TARGET
46
+ - if [ "$RUN_VINT" = "true" ]; then python --version; fi
47
+ - if [ "$RUN_VINT" = "true" ]; then vint autoload; fi
48
49
after_success:
50
- covimerage write_coverage $TEST_PROFILE
0 commit comments