Style fixes (via vint) (#662)

This also adds a augroup for `jedi#add_goto_window`.
This commit is contained in:
Daniel Hahler
2017-01-29 11:55:55 +01:00
committed by Dave Halter
parent f100ffad4d
commit eba90e615d
5 changed files with 110 additions and 87 deletions

View File

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