From 3a0a6bc90e5a9a3a77e4b15ee2c796aef5f216e4 Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Fri, 9 Jun 2017 18:18:29 -0400 Subject: [PATCH] Do not print pipdeptree for lftools pipdeptree causes a lot of text spam in the logs and is really only useful for us when we need to troubleshoot so lets comment it out by default. Change-Id: I36de21e3b08d5bd5aa49ae628c2bec37e3ca2fe6 Signed-off-by: Thanh Ha --- shell/lftools-install.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/shell/lftools-install.sh b/shell/lftools-install.sh index cebb0a5d..8b1c8f1b 100644 --- a/shell/lftools-install.sh +++ b/shell/lftools-install.sh @@ -19,8 +19,10 @@ virtualenv --quiet "$WORKSPACE/.virtualenvs/lftools" source "$WORKSPACE/.virtualenvs/lftools/bin/activate" PYTHON="$WORKSPACE/.virtualenvs/lftools/bin/python" $PYTHON -m pip install --quiet --upgrade pip -$PYTHON -m pip install --quiet --upgrade pipdeptree $PYTHON -m pip install --quiet --upgrade "lftools<1.0.0" -echo "----> Pip Dependency Tree" -$PYTHON -m pipdeptree +# pipdeptree prints out a lot of information because lftools pulls in many +# dependencies. Let's only print it if we want to debug. +# echo "----> Pip Dependency Tree" +# $PYTHON -m pip install --quiet --upgrade pipdeptree +# $PYTHON -m pipdeptree -- 2.16.6