diff options
author | Bruno Wagner <bwgpro@gmail.com> | 2015-01-06 20:50:43 -0200 |
---|---|---|
committer | Bruno Wagner <bwgpro@gmail.com> | 2015-01-06 20:50:43 -0200 |
commit | 5fca848c31ec955d58e379e1d5812f7ed0f23a1b (patch) | |
tree | a4936d3697d35f99ad5e99f36b41e9f730603841 /service/go | |
parent | 118074189923c11b012135afb16f055a869c29a6 (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-x | service/go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |