Files
jedi-vim/.travis.yml
2018-07-15 20:57:27 +02:00

16 lines
235 B
YAML

sudo: false
language: python
python: 3.6
env:
matrix:
- ENV=test
- ENV=check
install:
- |
if [ "$ENV" = "test" ]; then
python3.6 -m pip install pytest
fi
script:
- vim --version
- make --keep-going "$ENV"