summaryrefslogtreecommitdiff
path: root/service/go
diff options
context:
space:
mode:
authorDuda Dornelles <ddornell@thoughtworks.com>2014-11-18 11:52:09 -0200
committerDuda Dornelles <ddornell@thoughtworks.com>2014-11-18 12:28:35 -0200
commitc0b7c92b41eb7118a349cc91990d201d22816cad (patch)
tree6bc0157a4bc615cfcc20fa137ba5aa8adf361953 /service/go
parent500744ee8cabd1bffb61eae8029f2832d6fb2f02 (diff)
Deferring TagsController.tags and fixing tests to deal with deferreds
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