ci: Reduce verbosity of low-risk tasks.

This commit is contained in:
Justin M. Keyes 2016-07-03 04:35:16 -04:00
parent 6e2c02bc6d
commit f3056988ed
2 changed files with 6 additions and 7 deletions

View File

@ -12,13 +12,13 @@ if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
fi fi
echo "Upgrade Python 2's pip." echo "Upgrade Python 2's pip."
pip2.7 install --user --upgrade pip pip2.7 -q install --user --upgrade pip
if [[ "${TRAVIS_OS_NAME}" == osx ]]; then if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
echo "Install Python 3." echo "Install Python 3."
brew install python3 brew install python3
echo "Upgrade Python 3's pip." echo "Upgrade Python 3's pip."
pip3 install --user --upgrade pip pip3 -q install --user --upgrade pip
else else
# TODO: Replace with upgrade when Travis gets python3-pip package. # TODO: Replace with upgrade when Travis gets python3-pip package.
echo "Install pip for Python 3." echo "Install pip for Python 3."

View File

@ -19,14 +19,13 @@ elif [[ "${BUILD_MINGW}" == ON ]]; then
fi fi
# Set CC to default to avoid compilation problems # Use default CC to avoid compilation problems when installing Python modules.
# when installing Python modules.
echo "Install neovim module and coveralls for Python 2." echo "Install neovim module and coveralls for Python 2."
CC=cc pip2.7 install --user --upgrade neovim cpp-coveralls CC=cc pip2.7 -q install --user --upgrade neovim cpp-coveralls
echo "Install neovim module for Python 3." echo "Install neovim module for Python 3."
if [[ "${TRAVIS_OS_NAME}" == osx ]]; then if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
CC=cc pip3 install --user --upgrade neovim CC=cc pip3 -q install --user --upgrade neovim
else else
CC=cc pip3.3 install --user --upgrade neovim CC=cc pip3.3 -q install --user --upgrade neovim
fi fi