mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 06:30:03 +08:00
23 lines
503 B
YAML
23 lines
503 B
YAML
|
dist: xenial
|
||
|
|
||
|
language: python
|
||
|
|
||
|
python:
|
||
|
- 3.6
|
||
|
- 3.7
|
||
|
|
||
|
install:
|
||
|
- eval "$(curl -Ss https://raw.githubusercontent.com/neovim/bot-ci/master/scripts/travis-setup.sh) nightly-x64"
|
||
|
- make install
|
||
|
|
||
|
env:
|
||
|
global:
|
||
|
- PATH=$HOME/neovim/bin:$PATH
|
||
|
- PYTEST_ADDOPTS=--cov rplugin/python3/deoplete
|
||
|
|
||
|
script:
|
||
|
- make --keep-going test lint
|
||
|
- coverage report -m --skip-covered
|
||
|
- coverage xml
|
||
|
- bash <(curl -s https://codecov.io/bash) -X gcov -X coveragepy -X fix -X search -X xcode -f coverage.xml
|