summaryrefslogtreecommitdiff
path: root/service/go
diff options
context:
space:
mode:
Diffstat (limited to 'service/go')
-rwxr-xr-xservice/go8
1 files changed, 7 insertions, 1 deletions
diff --git a/service/go b/service/go
index 9b967b83..5ae8d26b 100755
--- a/service/go
+++ b/service/go
@@ -1,3 +1,9 @@
#!/bin/bash
-python setup.py $*
+if [ "$1" == 'test' ]
+then
+ nosetests --nocapture test/unit
+ nosetests --nocapture test/integration
+else
+ python setup.py $*
+fi