Files
jedi-vim/.travis.yml
Daniel Hahler 682f37792d Move Travis targets to Makefile
This allows for calling them easily locally.
2017-02-22 11:36:01 +01:00

19 lines
268 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" = "test" ]; then
pip install pytest
fi
script:
- vim --version
- make "$ENV"