ci/travis: install pynvim outside of $HOME

This runs the python tests on Travis.
WIP: skip failing python tests
This commit is contained in:
Jan Edmund Lazo 2019-09-14 17:29:31 -04:00
parent 67bede0b27
commit 7be7ec98a2
No known key found for this signature in database
GPG Key ID: 64915E6E9F735B15
1 changed files with 2 additions and 2 deletions

View File

@ -14,9 +14,9 @@ fi
# Use default CC to avoid compilation problems when installing Python modules.
echo "Install neovim module for Python 3."
CC=cc python3 -m pip -q install --user --upgrade pynvim
CC=cc python3 -m pip -q install --upgrade pynvim
echo "Install neovim module for Python 2."
CC=cc python2 -m pip -q install --user --upgrade pynvim
CC=cc python2 -m pip -q install --upgrade pynvim
echo "Install neovim RubyGem."
gem install --no-document --version ">= 0.8.0" neovim