From 887e9dc507651ef95a438e388cf0710d25e55f74 Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Thu, 8 Nov 2012 22:23:11 -0800 Subject: [PATCH] Adding quiet flag to local setup to prevent too much garbage output in Travis --- setup-local.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup-local.sh b/setup-local.sh index ce71f2c..7fa6ebb 100755 --- a/setup-local.sh +++ b/setup-local.sh @@ -31,4 +31,5 @@ virtualenv $DIR/local_virtualenv # Install there. source $DIR/local_virtualenv/bin/activate cd $DIR -python setup.py develop +echo "running setup.py develop, this may take a moment..." +python setup.py --quiet develop