ci: Only try installing python-pynvim if Py2 pip is present

This commit is contained in:
James McCoy 2020-11-18 22:44:00 -05:00
parent 1e7d937e16
commit 80d1c4da5f
No known key found for this signature in database
GPG Key ID: DFE691AE331BA3DB
1 changed files with 4 additions and 2 deletions

View File

@ -15,8 +15,10 @@ 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
echo "Install neovim module for Python 2."
CC=cc python2 -m pip -q install --user --upgrade pynvim
if python2 -m pip -c True 2>&1; then
echo "Install neovim module for Python 2."
CC=cc python2 -m pip -q install --user --upgrade pynvim
fi
echo "Install neovim RubyGem."
gem install --no-document --bindir "$HOME/.local/bin" --user-install --pre neovim