diff options
-rwxr-xr-x | .ci/before_install.sh | 4 | ||||
-rwxr-xr-x | .ci/install.sh | 9 |
2 files changed, 6 insertions, 7 deletions
diff --git a/.ci/before_install.sh b/.ci/before_install.sh index 2a1ac05569..1bdd89de42 100755 --- a/.ci/before_install.sh +++ b/.ci/before_install.sh @@ -12,13 +12,13 @@ if [[ "${TRAVIS_OS_NAME}" == osx ]]; then fi 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 echo "Install Python 3." brew install python3 echo "Upgrade Python 3's pip." - pip3 install --user --upgrade pip + pip3 -q install --user --upgrade pip else # TODO: Replace with upgrade when Travis gets python3-pip package. echo "Install pip for Python 3." diff --git a/.ci/install.sh b/.ci/install.sh index fb5d1c09c1..cb2362a70e 100755 --- a/.ci/install.sh +++ b/.ci/install.sh @@ -19,14 +19,13 @@ elif [[ "${BUILD_MINGW}" == ON ]]; then fi -# Set CC to default to avoid compilation problems -# when installing Python modules. +# Use default CC to avoid compilation problems when installing Python modules. 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." if [[ "${TRAVIS_OS_NAME}" == osx ]]; then - CC=cc pip3 install --user --upgrade neovim + CC=cc pip3 -q install --user --upgrade neovim else - CC=cc pip3.3 install --user --upgrade neovim + CC=cc pip3.3 -q install --user --upgrade neovim fi |