summaryrefslogtreecommitdiff
path: root/service/go
diff options
context:
space:
mode:
authorBruno Wagner <bwgpro@gmail.com>2015-01-06 20:50:43 -0200
committerBruno Wagner <bwgpro@gmail.com>2015-01-06 20:50:43 -0200
commit5fca848c31ec955d58e379e1d5812f7ed0f23a1b (patch)
treea4936d3697d35f99ad5e99f36b41e9f730603841 /service/go
parent118074189923c11b012135afb16f055a869c29a6 (diff)
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
Diffstat (limited to 'service/go')
-rwxr-xr-xservice/go4
1 files changed, 2 insertions, 2 deletions
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