mirror of
https://github.com/davidhalter/jedi-vim.git
synced 2025-12-06 10:54:22 +08:00
19 lines
268 B
YAML
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"
|