Commit 79a08266 by Calen Pennington

Make pip install during jenkins builds quieter

parent 2a457bdc
...@@ -11,12 +11,12 @@ export PYTHONIOENCODING=UTF-8 ...@@ -11,12 +11,12 @@ export PYTHONIOENCODING=UTF-8
GIT_BRANCH=${GIT_BRANCH/HEAD/master} GIT_BRANCH=${GIT_BRANCH/HEAD/master}
pip install -r pre-requirements.txt pip install -q -r pre-requirements.txt
yes w | pip install -r requirements.txt yes w | pip install -q -r requirements.txt
[ ! -d askbot ] || pip install -r askbot/askbot_requirements.txt [ ! -d askbot ] || pip install -q -r askbot/askbot_requirements.txt
# Install the latest entry points from xmodule # Install the latest entry points from xmodule
pip install --upgrade -e common/lib/xmodule pip install -q --upgrade -e common/lib/xmodule
rake clobber rake clobber
TESTS_FAILED=0 TESTS_FAILED=0
......
...@@ -11,12 +11,12 @@ export PYTHONIOENCODING=UTF-8 ...@@ -11,12 +11,12 @@ export PYTHONIOENCODING=UTF-8
GIT_BRANCH=${GIT_BRANCH/HEAD/master} GIT_BRANCH=${GIT_BRANCH/HEAD/master}
pip install -r pre-requirements.txt pip install -q -r pre-requirements.txt
yes w | pip install -r requirements.txt yes w | pip install -q -r requirements.txt
[ ! -d askbot ] || pip install -r askbot/askbot_requirements.txt [ ! -d askbot ] || pip install -q -r askbot/askbot_requirements.txt
# Install the latest entry points from xmodule # Install the latest entry points from xmodule
pip install --upgrade -e common/lib/xmodule pip install -q --upgrade -e common/lib/xmodule
rake clobber rake clobber
TESTS_FAILED=0 TESTS_FAILED=0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment