From be33b03fe8aef6e9e23f82ee7653bc46fabef161 Mon Sep 17 00:00:00 2001 From: Ward Vandewege Date: Sat, 14 Feb 2015 14:06:36 -0500 Subject: [PATCH] Make pip install quiet, no point in printing loads of useless warnings (looking at you, PyYAML!). No issue # --- jenkins/run-tests.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/jenkins/run-tests.sh b/jenkins/run-tests.sh index 689405b2ef..03928ce7af 100755 --- a/jenkins/run-tests.sh +++ b/jenkins/run-tests.sh @@ -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" -- 2.30.2