From 79a08266addf3cf93b73064704a7b2569f2d6feb Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Wed, 7 Nov 2012 08:51:05 -0500 Subject: [PATCH] Make pip install during jenkins builds quieter --- jenkins/test_edge.sh | 8 ++++---- jenkins/test_lms.sh | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/jenkins/test_edge.sh b/jenkins/test_edge.sh index 12a8bd2189..66a1185989 100755 --- a/jenkins/test_edge.sh +++ b/jenkins/test_edge.sh @@ -11,12 +11,12 @@ export PYTHONIOENCODING=UTF-8 GIT_BRANCH=${GIT_BRANCH/HEAD/master} -pip install -r pre-requirements.txt -yes w | pip install -r requirements.txt -[ ! -d askbot ] || pip install -r askbot/askbot_requirements.txt +pip install -q -r pre-requirements.txt +yes w | pip install -q -r requirements.txt +[ ! -d askbot ] || pip install -q -r askbot/askbot_requirements.txt # Install the latest entry points from xmodule -pip install --upgrade -e common/lib/xmodule +pip install -q --upgrade -e common/lib/xmodule rake clobber TESTS_FAILED=0 diff --git a/jenkins/test_lms.sh b/jenkins/test_lms.sh index c24d75991b..d95ee689cb 100755 --- a/jenkins/test_lms.sh +++ b/jenkins/test_lms.sh @@ -11,12 +11,12 @@ export PYTHONIOENCODING=UTF-8 GIT_BRANCH=${GIT_BRANCH/HEAD/master} -pip install -r pre-requirements.txt -yes w | pip install -r requirements.txt -[ ! -d askbot ] || pip install -r askbot/askbot_requirements.txt +pip install -q -r pre-requirements.txt +yes w | pip install -q -r requirements.txt +[ ! -d askbot ] || pip install -q -r askbot/askbot_requirements.txt # Install the latest entry points from xmodule -pip install --upgrade -e common/lib/xmodule +pip install -q --upgrade -e common/lib/xmodule rake clobber TESTS_FAILED=0