diff options
author | James McCoy <jamessan@jamessan.com> | 2018-02-07 09:47:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-07 09:47:10 -0500 |
commit | f66ebcd0a2d374f5516236ad6641aa022ce29b7a (patch) | |
tree | b0e0eab7d4dfcb1296bde8f179f2d181dcd3c23c /ci/install.sh | |
parent | 366528130e397a6173789072c08b9afa5efd0423 (diff) | |
parent | d071578ed08612c77246bd67ef167ef350342755 (diff) | |
download | rneovim-f66ebcd0a2d374f5516236ad6641aa022ce29b7a.tar.gz rneovim-f66ebcd0a2d374f5516236ad6641aa022ce29b7a.tar.bz2 rneovim-f66ebcd0a2d374f5516236ad6641aa022ce29b7a.zip |
Merge pull request #7977 from jamessan/remove-coveralls
Switch to codecov and track coverage per test suite
Diffstat (limited to 'ci/install.sh')
-rwxr-xr-x | ci/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/install.sh b/ci/install.sh index eb7fb14760..60d9507bfb 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -13,8 +13,8 @@ if [[ "${TRAVIS_OS_NAME}" == osx ]]; then fi # Use default CC to avoid compilation problems when installing Python modules. -echo "Install neovim module and coveralls for Python 2." -CC=cc pip2.7 -q install --user --upgrade neovim cpp-coveralls +echo "Install neovim module for Python 2." +CC=cc pip2.7 -q install --user --upgrade neovim echo "Install neovim module for Python 3." # Allow failure. pyenv pip3 on travis is broken: |