Files
jedi-vim-fork/.travis.yml
Daniel Hahler eba90e615d Style fixes (via vint) (#662)
This also adds a augroup for `jedi#add_goto_window`.
2017-01-29 11:55:55 +01:00

26 lines
400 B
YAML

sudo: false
language: python
env:
matrix:
- ENV=test
- ENV=check
matrix:
allow_failures:
# Needs to be fixed!
- env: ENV=test
install:
- |
if [ "$ENV" = "check" ]; then
pip install vim-vint
else
pip install pytest
fi
script:
- vim --version
- |
if [ "$ENV" = "check" ]; then
vint after autoload ftplugin plugin
else
pytest
fi