From: Ward Vandewege Date: Sat, 14 Feb 2015 19:06:36 +0000 (-0500) Subject: Make pip install quiet, no point in printing loads of useless warnings X-Git-Tag: 1.1.0~1059^2~6^2~200 X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/be33b03fe8aef6e9e23f82ee7653bc46fabef161 Make pip install quiet, no point in printing loads of useless warnings (looking at you, PyYAML!). No issue # --- 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"