Make pip install quiet, no point in printing loads of useless warnings
authorWard Vandewege <ward@curoverse.com>
Sat, 14 Feb 2015 19:06:36 +0000 (14:06 -0500)
committerWard Vandewege <ward@curoverse.com>
Sat, 14 Feb 2015 19:06:36 +0000 (14:06 -0500)
(looking at you, PyYAML!).

No issue #

jenkins/run-tests.sh

index 689405b2ef97f8e3312f2a3b75cbc5cb0658d8e4..03928ce7af5eb67136c162a0081a76c3d0ff8b3d 100755 (executable)
@@ -334,7 +334,8 @@ then
 fi
 
 # Needed for run_test_server.py which is used by certain (non-Python) tests.
-pip install PyYAML || fatal "pip install PyYAML failed"
+echo "pip install -q PyYAML"
+pip install -q PyYAML || fatal "pip install PyYAML failed"
 
 checkexit() {
     if [[ "$?" != "0" ]]; then
@@ -390,7 +391,7 @@ do_install() {
         then
             cd "$WORKSPACE/$1" \
                 && python setup.py sdist rotate --keep=1 --match .tar.gz \
-                && pip install --upgrade dist/*.tar.gz
+                && pip install -q --upgrade dist/*.tar.gz
         elif [[ "$2" != "" ]]
         then
             "install_$2"