From 5fca848c31ec955d58e379e1d5812f7ed0f23a1b Mon Sep 17 00:00:00 2001 From: Bruno Wagner Date: Tue, 6 Jan 2015 20:50:43 -0200 Subject: Nose --no-capture was spilling garbage over the tests Removed it by default Added params to './go test' so it can be used if needed --- service/go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'service/go') diff --git a/service/go b/service/go index c5822401..ece0eecb 100755 --- a/service/go +++ b/service/go @@ -14,8 +14,8 @@ function setupjs { } if [ "$1" == 'test' ]; then - nosetests --nocapture test/unit - nosetests --nocapture test/integration + nosetests "${@:2}" test/unit + nosetests "${@:2}" test/integration elif [ "$1" == 'setuppy' ]; then setuppy elif [ "$1" == 'setupjs' ]; then -- cgit v1.2.3