diff options
author | Daniel Hahler <git@thequod.de> | 2018-07-12 18:09:29 +0200 |
---|---|---|
committer | Daniel Hahler <git@thequod.de> | 2018-07-16 16:05:50 +0200 |
commit | cedf6d3f0943600bfc029037a86ab160391fb393 (patch) | |
tree | 39c67f4a29b82846e526c83877c374962818dd5e | |
parent | 96fb777feeb2ddec46539cba2df501239db6512e (diff) | |
download | deoplete.nvim-cedf6d3f0943600bfc029037a86ab160391fb393.zip |
Travis: use Neovim nightly
https://github.com/neovim/bot-ci#generated-builds
Fixes https://github.com/Shougo/deoplete.nvim/issues/803.
-rw-r--r-- | .travis.yml | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml index 209f9de..a7a5d41 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,14 +4,12 @@ dist: trusty language: python python: - - 3.5 - - 3.6 + - 3.5 + - 3.6 install: - # Install Neovim via Gist - # https://gist.github.com/lambdalisue/0f461f6a91743895394e63a9a1c65232 - - curl -sL https://gist.githubusercontent.com/lambdalisue/0f461f6a91743895394e63a9a1c65232/raw/install_nvim_for_ci.sh | bash - - make install + - eval "$(curl -Ss https://raw.githubusercontent.com/neovim/bot-ci/master/scripts/travis-setup.sh) nightly-x64" + - make install env: global: @@ -19,7 +17,7 @@ env: - 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 + - 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 |